Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove checkall option in extjs checkboxmodel?

How to remove check all option is extjs 4 checkboxmodel?

enter image description here

Regards

like image 983
Gihan Lasita Avatar asked Sep 06 '11 14:09

Gihan Lasita


1 Answers

When defining a grid (in 4.2.1), set this config option to:

selModel: Ext.create('Ext.selection.CheckboxModel', { showHeaderCheckbox: false }),

(The relevant part is showHeaderCheckbox :false)

like image 197
Feroz Avatar answered Nov 04 '22 08:11

Feroz