Ext.grid.property.Grid 中的新专栏?
New columns in Ext.grid.property.Grid?
有没有办法在 Ext.grid.property.Grid? By default there is Name and Value and I want to add few columns such as New Value and xtype: 'actioncolumn' 中添加新列,处理程序是否批准新值。你知道如何重命名默认列吗?我在官方文档中没有发现任何相关内容。
谢谢。
您不能向 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
.
会更容易
有没有办法在 Ext.grid.property.Grid? By default there is Name and Value and I want to add few columns such as New Value and xtype: 'actioncolumn' 中添加新列,处理程序是否批准新值。你知道如何重命名默认列吗?我在官方文档中没有发现任何相关内容。
谢谢。
您不能向 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
.