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
1600
Finding the UltraGridRow that is related to an UltraDataRow
posted

I am trying to find a way to get the UltraGridRow in the UltraWinGrid control that is related to my UltraDataRow in the UltraWinDataSource.  So far, I have not been successful.  Does anyone know how to do this?

  • 469350
    Verified Answer
    Offline posted

     If you know the index of the row in the list, you can use the GetRowWithListIndex method on the grid's Rows collection. This can be tricky, though, as the list here is the BindingList, not the actual list of rows in the UltraDataSource. 

        Another option would be to loop through the grid rows yourself and examine the ListObject of each row to see if it's the UltraDataRow you want.