I want to add a group by on grid column.
grid.groupby('table_columnName');
If I add this code to init method then it is working the first time. if we modify some parameters it is not grouping the column again.
It is working if I add this code to a button clicked() method and click it after the form is loaded,
but not working on active or executeQuery() or any modified field method because the grid is not ready at that time.
I have set on Grid property and it is not working.
Kindly suggest a way to achieve it.