Reputation: 465
I need to disable checkbox 'Actions' in the drop-down menu on the grid
How can I do this?
Upvotes: 1
Views: 218
Reputation: 11916
Simply set the field hideable
of your column to false:
columns: [
{
xtype: 'gridcolumn',
text: 'Option'
}
{
xtype: 'actioncolumn',
text: 'Actions'
hideable: false, // <<== Here
hidden: false
}
]
See hideable documentation.
Upvotes: 3