I am trying to create a Datagrid where the first column contains '+' sign and next columns contain the data. When the user clicks the '+' sign the data is taken from the current row and the corresponding hierarchial data from different table is displayed in the new grid just below the current row. I tried searching online but could not find any example.
Please suggest me how to check this.
Lets say the grid contains
- col1 Col2.... Col50
- col1 Col2.... Col50
When the user clicks the '+' sign.
it should read col1, Col2, Col3,Col4
Then make a db call and get the data based on the above values.
the resulting grid should be
- col1 col2.... Col50 NestedCol1 NestedCol2... NestedCol20 NestedCol1 NestedCol2... NestedCol20 . . . . .
- col1 col2... Col50
Thanks, Naveen