Extended datagrid

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to add a textbox that is the full length of a datagrid below
the columns of the grid?

Or is there a different control to achieve this?

Basically:
Col1 | Col2 | Col3
Line 1 1 | 2 | 3
line 1 text box.........
Line 2 2 | 2 | 3
:line 2 text box.......
....

We're trying nested grids but hoping there is a better method.

Thank you in advance.

- Andy Davidson
 
Andy,

Make an ItemTemplate and put there a simple html table consisting of 2 rows.
In the first row you will put all the columns and in the second row the
textbox.

Eliyahu
 
Back
Top