Does ExtJS6 allows a store binding to simple panel items, such that it plucks specified columns and display them as item { xtype: 'panel', id: 'master_list', title: 'MasterList', defaultType: 'button', bind: { store: '{zones}' } }
Does ExtJS6 allows a store binding to simple panel items, such that it plucks specified columns and display them as item { xtype: 'panel', id: 'master_list', title: 'MasterList', defaultType: 'button', bind: { store: '{zones}' } }
Atm in extJS 6, the item config on a panel is not a bindable item, mostly due to the fact that there is no getItem() and setItems() method found on the panel. You could always override panel and add that functionality and it would look something like this: