Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Turik Campbell on Oct 06, 2009 12:23
open dhtmlx forum
How to display custom group information @ the end of every group


Support,

When grouping a DHTMLXGrid, how do I display the custom group information at the end of group instead of beginning
of group (currently). Please provide an example.


By default, the following statement will display "<name> :: found <count> records" at the BEGINNING of every
group within the grid.. I want to display the same information at the END of every group



grid.customGroupFormat=function(name,count){
return name+" :: found " +count+ " records";
}


Turik
Answer posted by dhxSupport on Oct 07, 2009 06:25
Unfortunately there is no such possibility. Group information can be displayed only at the beginning of group. 
Answer posted by Stanislav (support) on Oct 07, 2009 06:34
If you have a static grid ( without ability to sort or add|remove rows ) - it possible to create custom rows , with necessary info, after each group. 
But it is really impossible in common case.