有没有办法在Ext.grid.property.Grid中添加新列?默认情况下,有名称和值,我想添加一些列,如新值和xtype: 'actioncolumn'与处理程序,以批准新值。你知道如何重命名默认列吗?我在官方文档中没有发现任何相关内容。
谢谢。
答案 0 :(得分:1)
您无法向Ext.grid.property.Grid
添加新列,也无法重新命名其列。
您可以使用以下内容重命名列:
listeners : {
beforerender : function() {
var cols = this.getView().getHeaderCt().getGridColumns();
cols[0].setText("Property");
cols[1].setText("Data");
}
}
我猜您也可以覆盖Ext.grid.property.Grid
,因此您可以添加新列,但我想更容易使用Ext.grid.Panel
。