Hi,
When I set groupingmodes/methods on ListGridField level the groupingmodes are not detected. I think this is caused by this line of code in the ListGrid.js:
var groupingModes = ( !field.getGroupValue ?
field.groupingModes ?
field.groupingModes :
( field._simpleType ?
(field._simpleType.getGroupingModes) ?
field._simpleType.getGroupingModes() :
field._simpleType.groupingModes
: false )
: false );
if getGroupValue is defined on field level (which is allowed according to the docs) then no groupingmodes are detected.
I think this issue exists in the most recent 8.3 build of Smartclient also (looking at the source code), but I tested with a version of a few months back.
gr. Martin
When I set groupingmodes/methods on ListGridField level the groupingmodes are not detected. I think this is caused by this line of code in the ListGrid.js:
var groupingModes = ( !field.getGroupValue ?
field.groupingModes ?
field.groupingModes :
( field._simpleType ?
(field._simpleType.getGroupingModes) ?
field._simpleType.getGroupingModes() :
field._simpleType.groupingModes
: false )
: false );
if getGroupValue is defined on field level (which is allowed according to the docs) then no groupingmodes are detected.
I think this issue exists in the most recent 8.3 build of Smartclient also (looking at the source code), but I tested with a version of a few months back.
gr. Martin
Comment