Hi,
I am using dhtmlxgrid for the first time and I am creating a table whose information must be grouped by some columns (more than one). I would like to know if dhtmlxgrid implements this kind of group-by, and how can I use it, i.e., what is the command line to do this?
Another doubt. In the same table, I need to show some many information with the group-key in the group header. Is it possible? How can I do this?
Thanks for attention!
Best Regards
I would like to know if dhtmlxgrid implements this kind of group-by
Unfortunately dhtmlxGrid doesn’t support such functionality.
>> In the same table, I need to show some many information with the group-key in the group header
You can use custom group format.
mygrid.customGroupFormat=function(text,count){
return “Grouped by “+text+”, there are “+count+” related records”
};
You can test example here dhtmlx.com/docs/products/dht … ormat.html