My grid has a Master table and one Detail Table.
If I let the columns display in their default order, everything works as it should.
However, if I do anything thin the PreRender event to reorder the columns of the Master table, even something as trivial as ...
Then the detail table refuses to expand.
Why's that?
And what can I do to be able to both expand my Detail tables and reorder my columns.
--
Stuart
If I let the columns display in their default order, everything works as it should.
However, if I do anything thin the PreRender event to reorder the columns of the Master table, even something as trivial as ...
| protected void RadGrid1_PreRender(object sender, EventArgs e) | |
| { | |
| RadGrid1.MasterTableView.SwapColumns(2, 2); | |
| } |
Why's that?
And what can I do to be able to both expand my Detail tables and reorder my columns.
--
Stuart