使用 Sencha 测试在网格行中引用组合框。
给定类似的东西:
{
text: "Select one",
width: 110,
editor: {
field: {
xtype: 'combobox',
editable: true,
valueField: 'val',
displayField: 'name',
store: {
fields: ['val', 'name'],
data: [
[0, 'Option 1'],
[1, 'Option 2'],
[2, 'Option 3']
]
}
}
}
}
到目前为止,我无法引用单击单元格后激活的组合。
这是使用单元编辑插件。
plugins: {
ptype: 'cellediting',
clicksToEdit: 1
},
所以我正在尝试使用 ST 从那里选择其中一个值。到目前为止还没有运气。我只能激活 cellediting 插件,执行以下操作:
this.grid().rowAt(index).cellAt(1).click();