ExtJS - 禁用Combobox onWidgetAttach无效

时间:2018-02-13 02:31:16

标签: extjs6.2

我正在网格中显示一个组合框。 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);
}
}

谢谢!

0 个答案:

没有答案