groupStat

aggregation shortcut “title” does not work in groupStat ?

grid.customGroupFormat=function(name,count){ return name+", "+grid.groupStat(name,0,"title"); }

You may try to use the following solution:

mygrid.customGroupFormat=function(name,count){ var title mygrid.forEachRowInGroup(name,function(id){ title=mygrid.cellById(id,column_index).getValue() }); return name+", "+title; }