[置顶] ExtJS editorgrid 最后一行不可编辑的解决方法

ext版本:2.1

 

       今天做项目的时候,碰到了一个问题,采用editorgrid,进行增删改操作,当新增的记录,导致出现滚动条的时候,最后一行就会变成不可编辑,如果没有滚动条的时候,可编辑。

       解决办法:关键是滚动条,

                在editorgrid中监听事件bodyscroll,并且return false;就可以解决这个问题。

代码:

      new Ext. grid.EditorGridPanel({

              id:'jobgrid',
region:'center',
loadMask:{msg:'加载数据中...'},
border:false,
clicksToEdit:1,
ds:this._ds,
cm:this._cm,
sm:this._sm,
tbar:this._tbar,
autoScroll:true,
// viewConfig: {
// forceFit: true
// },
listeners:{
    'bodyscroll':function(){
         return false;
  }
}

 

     })

你可能感兴趣的:(function,ext,ExtJs,border)