我想在属性网格中显示持久字段(在我的模型文件中定义的字段)。
属性网格:
Ext.define('ATCOM.view.InspectorProperties', {
extend : 'Ext.grid.property.Grid',
alias : 'widget.inspectorProperties',
cls : 'property-grid',
height : 150,
listeners : {
beforerender : function() {
// Rename the first column
var cols = this.getView().getHeaderCt().getGridColumns();
cols[0].setText("Property");
},
beforeedit : function(e) {
// Read-only
return false;
}
},
source : {} // Start with no items
});
我在选择事件(在控制器中)中加载这样的项目,其中记录是我们的模型对象,getInfo() 是属性网格:
var source = {};
source.id = record.get('id');
source.start = record.get('start');
source.end = record.get('end');
this.getInfo().setSource(source);
模型:
Ext.define('ATCOM.model.Shift', {
extend : 'Ext.data.Model',
fields : [ 'id', {
name : 'start',
type : 'date',
}, {
name : 'end',
type : 'date',
}, 'position', 'controller' ],
hasMany : {
model : 'ATCOM.model.ShiftAlloc',
name : 'allocations'
}
});
有没有更好的方法来解决这个问题,以便所有非关联字段(allocations
在我的情况下除外)都会自动发送到属性网格?也可以读取字段ATCOM.model.Shift.getFields()
并迭代那些检查persistent:false;
以保留剩余的键,但是我如何从实例中获取类引用 - 例如,我如何ATCOM.model.Shift
从它的一个实例中获取以便我可以调用获取字段()?
编辑:
查找类名:http ://docs.sencha.com/ext-js/4-1/#!/api/Ext.Base-static-method-getName