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
310
How to get child of child rows
posted

Hi 

I have a Hierarchical web grid .

In that number of child rows of parent and child also.

I want to find child rows of child.

Flow is like this:

Parent --> child--> child- -> child --> it will continue

 

The rows which are highlighted by Red I want to update that rows.

 

Parents
No Data
Reply
  • 49378
    posted

    Hi juliep,

    Thank you for posting in the community.

    In a hierarchical UltraWebGrid each row has its own rows collection which may be accessed (given that the data has been bound and is accessible) using something similar to:

    UltraWebGrid1.Rows[0].Rows[0].Cells[0].Value

    Similarly, on the client:

    igtbl_getGridById("UltraWebGrid1").Rows.getRow(0).Rows.getRow(0).getCell(0).getValue()

    Please note that the UltraWebGrid control is now outdated and as of .NetAdvantage 2011 Volume 2 is no longer included in our product package. I would suggest that you consider switching to the WebDataGrid/WebHieararchicalDataGrid. More information regarding these controls is available at:

    http://help.infragistics.com/NetAdvantage/ASPNET/2011.2/CLR4.0/?page=Web_WebDataGrid_WebDataGrid.html

    Additional samples demonstrating the features of these grids can be found at:
    http://samples.infragistics.com/aspnet/

    Hope this helps.

Children