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
2114
Obtain the object from Row
posted

Say I have the following

Dim objList as List(Of MyObject) = GetMyObjects()
myGrid.DataSource = objList

How can I recuperate the myActiveObj from the myDataGrid. ActiveRow?

Parents
No Data
Reply
  • 2732
    Offline posted

    The object should be in myDataGrid.ActiveRow.ListObject

     

    Public ReadOnly Property ListObject As Object
         Member of Infragistics.Win.UltraWinGrid.UltraGridRow

    Summary: Returns the object corresponding to this row from the IList that the control is bound to. Returns Null if this is an UltraGridGroupByRow.

Children