I am trying to use 30+ hidden columns in a virtual grid, so that I can present the data in a separate detail grid when a user clicks on a node. However, I can't seems to extract the data from the hidden columns.
Here is the return value from the Immediate window for a visible column...
?node.FlyGrid.Columns.GetColumnFromCellIndex(1).GetValue(node)
"NAS1149 - WSHR, FLAT" {String}
String: "NAS1149 - WSHR, FLAT"
When I try to get values from a hidden column (which has values) I get the message:
?node.FlyGrid.Columns.GetColumnFromCellIndex(3).GetValue(node)
Referenced object has a value of 'Nothing'.
Any ideas?
Thanks in advance!