
ExtJs
麦香馒头
这个作者很懒,什么都没留下…
展开
-
类似usMoney的人民币格式
function RMBMoney(v){ v = (Math.round((v-0)*100))/100; v = (v == Math.floor(v)) ? v + ".00" : ((v*10 == Math.floor(v*10)) ? v + "0" : v); v = String(v); ...2010-04-10 11:33:58 · 217 阅读 · 0 评论 -
gird formula处理插件
new Ext.grid.EditorGridPanel({ region:"center",store:store,stripeRows:true,frame:true,clicksToEdit:1, plugins:new Ext.ux.EditorGridRenderer({ formulas:{ total : "Math.max(baseWage+caree...2010-04-12 14:09:55 · 201 阅读 · 0 评论 -
使用iBatis 取得数据返回Page为空
CustfeeAction.java 内容 /** * 查找用户缴费记录 * * @return */ public String findAllCustfeeByCustomer() { String strCustomerId = getRequest().getParameter("customerId"); Custfee custfee = n...2010-04-12 16:10:19 · 260 阅读 · 0 评论 -
MyEclipse7.0 以上版本安装Spket
网上找的基本都是自己下载解压缩到对应的目录低下,神奇的是,不过我怎么尝试都没办法自动提示.. 下面的方法是我自己尝试出来的... 90%能用 启动ECLIPSE Help → Software Updates → Find and Install… → Search for new features to install → New remote site… 名称: “Sp...2010-04-17 14:41:16 · 123 阅读 · 0 评论 -
缴费冲正
var backPayForm = new Ext.FormPanel({ url : 'backCustfee.action', labelAlign : 'right', labelWidth : 80, bodyStyle : 'padding:5px', border : false, baseCls : 'x-plain'...2010-05-01 22:37:19 · 415 阅读 · 0 评论 -
重写radiogroup,checkboxgroup取值
//重写radiogroup,checkboxgroup取值 Ext.QuickTips.init(); Ext.override(Ext.form.BasicForm,{ findField : function(id){ var field = this.items.get(id);...2010-02-18 14:32:23 · 136 阅读 · 0 评论