iterates through all rows in some group
name | string | name of the group |
custom_code | function | function which gets row id as the incoming argument |
Available only in PRO Edition
myGrid.forEachRowInGroup("John",function(id){
do_something_with_row(id);
});
Back to top