摘要:
Extjs的submit()方法提交的数据:如下:this.formPanel.getForm().submit({ url:this.saveUrl, method:'POST', params:{ flag:e }, success:function(for... 阅读全文
摘要:
工作中用到了Extjs,从后台获取数据的时候,用到了extjs自己的Ext.data.store方法,然后封装了ExtGridReturn方法,目的:前台用到Ext.data.store读取从后台传过来的数据,后台封装成ExtGridReturn类型前台如下:this.store = new Ext... 阅读全文
摘要:
有两个小属性,如下this.on('rowdblclick', this.readContent, this);this.on('cellclick', this.gridCellClick, this); //第一个是单机双击事件,触发的事件,第二个是相应的方法,第三个是作用的范围readCont... 阅读全文
摘要:
Extjs的radio的FormPanel的代码如下:{ xtype : 'radiogroup', fieldLabel : '是否置顶', name:'isTop', items : [{ boxLabel : '置顶', name:'isTop', inputValue :... 阅读全文