Good morning,
How does one reference a cell value by the Column name?
IE, in the Windows grid I would write:
uwGrid_ResultSet1_IDX.DisplayLayout.ActiveRow.Cells("CustID").Value
Whats the equivilent for the webgrid?
I only see a index # available. need name.
Thanks
Deasun
Deasun,
The equivalent for WebGrid is to use the FromKey() method of the Cells collection:
uwGrid_ResultSet1_IDX.DisplayLayout.ActiveRow.Cells.FromKey("CustID").Value
aye thanks.
Couldn't remember that one. :)