Did you ever try to override the getGroupSummaryData function in SC 10.0? I had no problems in SC 9.0 but now I get a RangeError:
My Code Snippet:
POINT1 is never reached in consequence of a infinite loop
Code:
WARN:Log:RangeError: Maximum call stack size exceededCode:
isc.defineClass("MyListGrid", "ListGrid").addProperties({
getGroupSummaryData: function(records, groupNode)
{
var rVal = this.Super("getGroupSummaryData", arguments);
// POINT1: doing some custom stuff with rVal
// ...
}
});