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
185
Ultra Grid row value
posted

Hello,

How can we get the value of UltraGrid row wise?

or

How can we get the value of Ultragrid cell wise?

Please help me in solving the issue..

Waiting for your reply !!!!

 

 

 

 

 

Parents
No Data
Reply
  • 20872
    Suggested Answer
    Offline posted

    Hello,

    Could you please let me know what do you mean by " value of the UltraGrid Row"? If you want to get the underlying object from the UltraGrid row than you could use the following :

    ultraGrid1.DisplayLayout.Rows[Index].ListObject

    About the cells values you could get it through the .Cells[Index].Value like:

    ultraGrid1.DisplayLayout.Rows[Index].Cells["Column Name"].Value

    Please let me know if you have any further questions.

Children