Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

Override getGroupSummaryData doesn't work anymore

$
0
0
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:

Code:

WARN:Log:RangeError: Maximum call stack size exceeded
My Code Snippet:
Code:

isc.defineClass("MyListGrid", "ListGrid").addProperties({
  getGroupSummaryData: function(records, groupNode)
  {
    var rVal = this.Super("getGroupSummaryData", arguments);

    // POINT1: doing some custom stuff with rVal
    // ...
  } 
});

POINT1 is never reached in consequence of a infinite loop

Viewing all articles
Browse latest Browse all 4756

Trending Articles