我有ExtJs网格,我想将空的可编辑行保留为网格中的最后一个低位。因此,当在最后一行输入内容时,我想在网格中添加另一个空的最后一行(当开始输入/编辑最后一行时)。但我无法捕捉最后一行istyping / isediting事件。
this.mygrid.on('isLastrowtyping',function(){
//this.addEmptyLastrow();
}),this);
ExtJs3中是否存在“isLastrowtyping”事件,如果不能使用ExtJs捕获此事件
答案 0 :(得分:0)
您应该在网格的编辑器中添加事件处理程序:
editor.on('afteredit',
function(e){
if (e.row==e.grid.store.data.length)
{e.grid.store.data.add(%%youremptyrow%%)}
}),this);