Hello,
How to get the value of a cell by the column name (in c#) in an ultrawebgrid please ?
The way to get a cell value for particular row using column name is as below.
Server side:
row.Cells.FromKey("ColumnName").Value
Here row is the reference of UltraGridRow object which represents row in grid.
Client Side (java script):
row.getCellFromKey("ColumnName").getValue()
Ok, thank you this is what I wanted, I was not far.