Am trying to access the childs of my ultrawebgrid but am not sure what code is the correct one for asp.net. I know in vb.net i used the same code and it was fine. I get the error : MissingMemberException was unhandled.Public member 'getChildRow' on type 'GroupByRow' not found
. Anyone has any ideas?
Here is my code
Protected Sub UltraWebGrid1_InitializeLayout(ByVal sender As Object, ByVal e As System.EventArgs) Handles UltraWebGrid1.Click
Dim rowSelected As UltraWebGrid
Dim orderID As Integer
Dim finalPriceData As OracleDataReader
For Each rG1 In UltraWebGrid1.Rows
For Each rL1 In rG1.getChildRow
For Each rowSelected In UltraWebGrid1.DisplayLayout.SelectedRows
orderID = rowSelected.Rows.FromKey("ORDERID").ToString
Next
Next
Next