"Group by" Header Context Menu Item doesn't show the column title in SmartClient 7.0 RC2. This is a consequence of new implementation of method ListGrid.getGroupByText(), which now evaluates groupByText as a dynamic string - groupByText.evalDynamicString(...).
The fix is to define
groupByText: "Group by ${title}"
instead
groupByText: "Group by "
in ListGrid class.
P.S.: this worked without problems in SmartClient 6.5.1.
Borut
The fix is to define
groupByText: "Group by ${title}"
instead
groupByText: "Group by "
in ListGrid class.
P.S.: this worked without problems in SmartClient 6.5.1.
Borut
Comment