如何使用 rowexpander 插件扩展网格中的行?我在我的控制器中使用以下代码
'editbasicinfotitlegrid gridview' : {
afterrender:this.expandAll
}
expandAll: function(){
var titlesGrid = Ext.getCmp('editBasicInfoTitleGrid');
var expander = titlesGrid.getPlugin('myRowExpander');
console.log(titlesGrid.plugins[0]);
expander.toggleRow(0);
}
但是这段代码给了我以下错误
Uncaught TypeError: Cannot call method 'down' of null