4

I am having a ExtJs EditorGridPanel configured with a GroupingStore, GroupingView and a CheckboxSelectionModel.

The Checkbox appears in the grid's header and in all the rows. I want to bring the checkbox on the group header also. My intention is to let the user select all records under a group by selecting the group header's checkbox.

Is there a way to do this? I'm using ExtJs 3.1.1 and RowActions plugin from saki.

blong
  • 2,815
  • 8
  • 44
  • 110
Saravanan M
  • 4,697
  • 5
  • 35
  • 37

1 Answers1

2

I found a way to acheive this using groupTextTpl config option in groupingView to render a checkbox and using groupClick event of grid to handle the checkbox click event.

more info could be found here

Saravanan M
  • 4,697
  • 5
  • 35
  • 37
  • You did not understand the question correctly. None of the examples behind your link uses the grouping feature. – Alexander Aug 05 '14 at 11:35