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
350
How to get the System.Data.DataRow from a selected row of UltraGrid?
posted

After setting the UltraGrid.DataSource to a DataSet,how to get the System.Data.DataRow from a selected row of UltraGrid?

Parents
No Data
Reply
  • 20872
    Suggested Answer
    Offline posted

    Hello,

    Probably you could use the following property - ListObject from the selected row :

    ultraGrid1.Selected.Rows[0].ListObject

    Please let me know if you need any other assistance with this matter.

Children