Consider this JSON sample :
[{id:1,editable:true},{id:2,editable:false}]
These records are about to be loaded in a store, then displayed inside a grid panel. This grid has an action column item for edition purposes. I'm looking for a way to disable the "edit" button only for the second row without performing computation after rendering. I'd like to use a built in feature which works like the renderer
property rather than to loop through the store to update each row once the grid has been rendered.
Does ExtJS 4.1.1 provides this kind of feature?