
Ext
liybsea
这个作者很懒,什么都没留下…
展开
-
Ext EditorGrid可编辑表格
Ext.onReady(function(){ //定义列 var columns = [ {header:'编号',dataIndex:'id',width:50, editor:{ allowBlank:true }}, //sortable:tr转载 2016-02-02 22:39:52 · 5328 阅读 · 1 评论 -
Ext grid单元格编辑不失去焦点点击保存
在ext中,editorgrid通常要失去一次焦点才能将最后编辑数据设置为脏数据提交到后台,下面的方法可以解决这个问题,在window的保存或者提交按钮的事件中加入以下代码: if(cooperationPriceGrid.activeEditor != null){ cooperationPriceGrid.activeEditor.completeEdit()转载 2016-03-09 13:36:10 · 1331 阅读 · 0 评论