I have a widgetcolumn that contains a button:
xtype:'widgetcolumn',
dataIndex: 'canUpdateKey',
itemId:'updateKey',
width:120,
widget: {
xtype: 'button',
text: 'Update key',
hidden: '{!record.canUpdateKey}'
}
I only want to display the button where canUpdateKey
is true on the record; but this does not work as indented. Relevant fiddle
From the widget config documentation:
So you should use bind instead, like this:
Fiddle: https://fiddle.sencha.com/#view/editor&fiddle/26ig