Hi,
we're using grouped listgrids to display data. We change the group node titles from "Name" to "Name, xx.xx hours" where we get the "xx.xx" value from the group summary field.
Now, in 5.0 this has stopped working, the title isn't set anymore.
The code to do this is:
So, basically setting the "singlecellvalue" attribute on the group treenode no longer has any effect, it's not changed on-screen as it was in 4.x.
I debugged and both the groupvalue and singlecellvalues are still part of the node.
Have you changed this behaviour? I hope i can still do this some other way?
we're using grouped listgrids to display data. We change the group node titles from "Name" to "Name, xx.xx hours" where we get the "xx.xx" value from the group summary field.
Now, in 5.0 this has stopped working, the title isn't set anymore.
The code to do this is:
Code:
groupNode.setAttribute("singleCellValue", groupNode.getAttribute("groupValue") + ": " + formatter.format(sum, groupNode, 1, 1) + " " + unitName);
I debugged and both the groupvalue and singlecellvalues are still part of the node.
Have you changed this behaviour? I hope i can still do this some other way?
Comment