Ext.define("Ext.fix.grid.feature.Grouping", {
override: 'Ext.grid.feature.Grouping',
afterViewRender: function(view) {
// without callParent the problem is not reproduced,
// but colapse/expand is not working
this.callParent(arguments);
if (view.editingPlugin) {
view.on({
beforegroupclick: function(grid) {
view.editingPlugin.completeEdit();
}
})
}
}
});
2条答案
按热度按时间dm7nw8vv1#
我目前的解决办法是:
vulvrdjw2#
问题似乎是,在分组时,焦点不会丢失在标记域上。尝试以下解决方法:在网格中添加监听程序:
这将移除对标记域的关注,并将迫使其折叠。