我有一个带有cellediting插件的网格。
我的一个列是int
字段,表示编辑单元格时组合存储中的值。
我想知道如何在编辑单元格之前让此列显示displayfield而不是值。
以下图片供参考:
值2,0,0等是我的“accessstype”字段,它是一个int。
如果我点击单元格来编辑我的原因:
如果我选择一个值,那么我不再显示文本,而是再次获得int值。
如何显示显示字段而不是值字段?
答案 0 :(得分:1)
为了便于访问,这里是other question:
的答案您可以为组合设置默认值。然后应该在启动时进行渲染。
使用单元格渲染器将组合的displayField渲染到网格中。按照一个工作示例,可以在其中一个API代码框中显示海报
正在使用 JSFiddle
Ext.create('Ext.data.Store', {
storeId:'simpsonsStore',
fields:['name', 'email', 'phone', 'id'],
data:{'items':[
{"name":"Lisa", "email":"lisa@simpsons.com", "phone":"555-111-1224","id": 0},
{"name":"Bart", "email":"bart@simpsons.com", "phone":"555-222-1234","id": 1},
{"name":"Homer", "email":"home@simpsons.com", "phone":"555-222-1244","id": 2},
{"name":"Marge", "email":"marge@simpsons.com", "phone":"555-222-1254","id": 3}
]},
proxy: {
type: 'memory',
reader: {
type: 'json',
root: 'items'
}
}
});
// the renderer. You should define it within a namespace
var comboBoxRenderer = function(combo) {
return function(value) {
var idx = combo.store.find(combo.valueField, value);
var rec = combo.store.getAt(idx);
return (rec === null ? '' : rec.get(combo.displayField) );
};
}
// the combo store
var store = new Ext.data.SimpleStore({
fields: [ "value", "text" ],
data: [
[ 1, "Option 1" ],
[ 2, "Option 2" ]
]
});
// the edit combo
var combo = new Ext.form.ComboBox({
store: store,
valueField: "value",
displayField: "text"
});
// demogrid
Ext.create('Ext.grid.Panel', {
title: 'Simpsons',
store: Ext.data.StoreManager.lookup('simpsonsStore'),
columns: [
{header: 'Name', dataIndex: 'name', editor: 'textfield'},
{header: 'Email', dataIndex: 'email', flex:1,
editor: {
xtype: 'textfield',
allowBlank: false
}
},
{header: 'Phone', dataIndex: 'phone'},
{header: 'id', dataIndex: 'id', editor: combo, renderer: comboBoxRenderer(combo)}
],
selType: 'cellmodel',
plugins: [
Ext.create('Ext.grid.plugin.CellEditing', {
clicksToEdit: 1
})
],
height: 200,
width: 400,
renderTo: Ext.getBody()
});
答案 1 :(得分:0)
只需删除配置属性' valueField'对于该组合,它将在从下拉列表中选择值后显示displayField值。