I have an ExtJS 4 grid with GroupingSummary Feature. ExtJs Default is grid is expanded when user clicks on any cell in grouping row. I want to disable this feature, no expansion should take place except when user clicks on designated ‘expand’ icon. How do I accomplish this?
There is the ‘groupclick’ event, is there a way to override its default behaviour and do nothing / remove it?
Thanks in advance
I have an ExtJS 4 grid with GroupingSummary Feature. ExtJs Default is grid is
Share
The method for it appears to be inherited from Grouping rather than GroupingSummary, so I suspect you need to override this method to prevent the current behaviour:
So you will need another file with something similar to the following:
Then you should be able to write a function that mimicks it was doing on groupclick, but instead on your icon click. Hope that helps.