我正在尝试将值分配给extjs属性网格中的多选组合框。当我为字段分配一些值时,网格无法呈现该字段。怎么解决这个?请找到以下代码。
Ext.create('Ext.grid.property.Grid', {
title: 'Properties Grid',
width: 400,
renderTo: Ext.getBody(),
source: {
name: "My Object",
created: Ext.Date.parse('10/15/2006', 'm/d/Y'),
timeofday: "12:00 PM",
available: false,
version: 0.01,
description: Ext.encode({
product: 'Clorox',
tagline: 'The Shinyest White!'
}),
childAccounts:['john','mike']
},
customEditors: {
timeofday: Ext.create('Ext.form.TimeField', {selectOnFocus: true}),
description: {
xtype: 'customeditorfield'
},
childAccounts:Ext.create('Ext.form.ComboBox', {store: ['john', 'mike', 'harvey'],multiSelect:true}),
},
customRenderers: {
timeofday: function( v ) {
return Ext.isDate( v ) ? Ext.Date.format( v, 'g:i A' ) : v;
}
},
propertyNames: {
name: '(name)',
created: 'Created Date',
timeofday: 'Time of Day',
available: 'Available?',
version: 'Version',
description: 'Product Description',
childAccounts: 'Child Description'
},
listeners: {
beforeedit: function( editor, e, opts ) {
if( e.record.get( 'name' )=='name' || e.record.get( 'name' )=='version' ) {
return false;
}
}
}
});
答案 0 :(得分:2)
默认情况下,只有"可编辑"属性网格支持值,并且Sencha不将数组计为可编辑。如果需要,您可以尝试覆盖它。 Ext.grid.property.Store.getReader
中引入了限制,其中有一个函数isEditableValue
:
isEditableValue: function(val){
return Ext.isPrimitive(val) || Ext.isDate(val) || val === null;
}
如果您更改此功能以允许阵列,它似乎工作,但没有保修。我使用以下代码进行快速测试:
Ext.define('', {
override: 'Ext.grid.property.Store',
getReader: function() {
var newReader = !this.reader;
this.callParent(arguments);
if(newReader) this.reader.isEditableValue = function(val) {
return Ext.isPrimitive(val) || Ext.isDate(val) || Ext.isArray(val) || val === null;
}
return this.reader;
}
});
Fiddle(不保证,一如既往)
答案 1 :(得分:0)
<强>解决方案:强>
您的&#34; childAccounts&#34;配置不正确。尝试替换:
childAccounts:['john','mike']
使用:
childAccounts: 'john, mike'
备注:强>
使用ExtJS 4.2进行测试。