0

我有 ExtJs 网格,我想将空的可编辑行保留为网格中的最后一个低点。因此,当在最后一行输入内容时,我想在网格中添加另一个空的最后一行(开始输入/编辑最后一行时)。但我无法捕捉最后一行 istyping/isediting 事件。

this.mygrid.on('isLastrowtyping',function(){
   //this.addEmptyLastrow();
   }),this);

ExtJs3 中是否有任何事件为“isLastrowtyping”,如果不是,我如何使用 ExtJs 捕获此事件

4

1 回答 1

0

您应该在网格的编辑器中添加事件处理程序:

editor.on('afteredit',
    function(e){
                if (e.row==e.grid.store.data.length)
                {e.grid.store.data.add(%%youremptyrow%%)}   
                }),this);
于 2013-09-25T12:40:10.337 回答