我有一些商店,它是数据。在面板上,它看起来如何“ fieldName”和文本字段(与调用的形式有所不同)。
例如,在一种形式上显示“名称文件”和字段,在另一种形式上显示:销售日期和日期字段。数据是动态形成的。
这是商店:
someStore = new Ext.data.JsonStore({
url: objectUrlAddress,
baseParams: {
'objectID' : objectID
},
root: 'Fields',
fields: [
{name: 'Hint'},
{name:'Type', type: 'int'},
{name: 'Value'},
{name: 'Index', type: 'int'},
{name: 'IsRequired', type:'bool'},
{name: 'Identifier'},
{name: 'EnumList'},
{name: 'Directory'},
{name: 'Data'}
]});
这里是网格
var templateGrids = new Ext.grid.EditorGridPanel({
id: 'tableId',
height:300,
width: '100%',
clicksToEdit:1,
frame: true,
store: tableTempStore,
columns:
[{header: 'Объект', width:200, dataIndex: 'Hint'},
{header: 'Значение',
dataIndex: 'Value',
width:300,
editor: {
xtype: 'textfield'
},
getCellEditor: function(record) {
var xtype = null,
args = {
fieldLabel: record.get('Hint'),
allowBlank: !record.get('IsRequired'),
value: record.get('Data'),
disabled: false
};
switch ('Type') {
case 0: // int
xtype = new Ext.form.NumberField();
args.allowDecimals = false;
break;
case 1: // decimal
xtype = new Ext.form.NumberField();
args.allowDecimals = true;
break;
case 2: // text
xtype = new Ext.form.TextField();
break;
case 3: // date
xtype = new Ext.form.DateField();
args.emptyText = 'дд.мм.гггг чч:мм';
args.format = 'd.m.y H:i';
break;
case 4: // enum
break;
case 5: // sql
var dataValues = Ext.util.JSON.decode(record.get('EnumList'));
var dataArray = Object.keys(dataValues).map(function(k) { return [k, dataValues[k]] });
xtype = 'Ext.form.field.ComboBox ';
args.store = new Ext.data.ArrayStore({
fields: [
{name: 'myId', type: 'string'},
{name: 'displayText'}
],
data: dataArray
});
break;
}
return new Ext.grid.CellEditor ({
field: Ext.create(xtype, args)
});
}
}]
});
单元格的类型可能会根据'Type'的值显示在网格中。
例如,如果Type == 2,则列的编辑器必须是textvalue等。此外,我收到错误消息“ record.get不是函数”。
请帮助我了解我在做什么错?