sp; type : 'int' //类型,默认为string类型 }, { name : 'username', mapping : 'username' }, { name : 'age', mapping : 'age', type : 'int' }, { name : 'ramark', mapping : 'remark' }]); // Store var ds = new Ext.data.Store( { proxy : new Ext.data.HttpProxy( { url : '${ctx}/UserServlet?method=getAll' }), reader : jsonReader }); ds.setDefaultSort('id', 'asc'); /** ***CRUD Grid ****/ //自定义的checkbox列选择 var sm = new xg.CheckboxSelectionModel({ listeners: //添加监听器 { //行选择事件 rowselect : function (sm, rowIndex, keep, rec) //行选中事件 { //得到ext组件用Ext.getCmp('id') var btn = Ext.getCmp('tbar1'); //选择数量大于2,禁用修改按钮 if(sm.getCount() != 1)  上一页 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] ... 下一页 >>
|