Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
150
how to get the value of a cell by the column name
posted

Hello,

How to get the value of a cell by the column name (in c#) in an ultrawebgrid please ?

 

Parents
  • 2907
    Verified Answer
    posted

    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()

Reply Children
No Data