S
sardinka
I have an existing grid on my form.
On run time I am generating a new table
and I would like to move that grid into cell
in table.
How do I do this?
DataGrid1.DataSource = Data()
DataGrid1.DataBind()
GridSettings(DataGrid1)
Dim Table As New Table
Me.FindControl("Panel1").Controls.Add(Table)
Dim Row = New TableRow
Dim Cell = New TableCell
Cell.value = ???? '"ytwe4te"
Row.cells.add(Cell)
Table.Rows.Add(Row)
On run time I am generating a new table
and I would like to move that grid into cell
in table.
How do I do this?
DataGrid1.DataSource = Data()
DataGrid1.DataBind()
GridSettings(DataGrid1)
Dim Table As New Table
Me.FindControl("Panel1").Controls.Add(Table)
Dim Row = New TableRow
Dim Cell = New TableCell
Cell.value = ???? '"ytwe4te"
Row.cells.add(Cell)
Table.Rows.Add(Row)