我正在网格中显示一个组合框。 combobox的价值来自当地商店。需要为其中一行禁用组合框。我使用了widget.setDisabled(true)。它似乎工作,但当我点击时,组合框显示所有值。
以下是我的代码:
{
xtype: 'widgetcolumn',
text: 'Code',
dataIndex: 'code',
widget: {
xtype: 'codecombo'
},
editor: {
xtype: 'codecombo'
},
onWidgetAttach: function (col, widget, rec)
{
widget.setDisabled(rec.get('type') === 2);
}
}
谢谢!