Check documentation for the latest version of dhtmlxSuite forEachRowInGroup DHTMLX Docs

forEachRowInGroup

iterates through all rows in some group

void forEachRowInGroup(string name,function custom_code);
namestringname of the group
custom_codefunctionfunction which gets row id as the incoming argument

Available only in PRO Edition

Example

myGrid.forEachRowInGroup("John",function(id){
    do_something_with_row(id);
});

Back to top