Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Oct 19, 2009 17:05
open dhtmlx forum
Grouping a SubGrid list

Hi

Is it possible to apply the function groupBy() to a subgrid?

Answer posted by Stanislav (support) on Oct 20, 2009 02:12
You can use onSubGridLoaded event

grid.attachEvent("onSubGridLoaded",function(sub){
        sub.groupBy(2); // sub - subgrid
        return true;
});