Hello,
Iam using a radgrid with detailtables in it.
Everythings works perfectly, data are shown correctly.
Now i want to resize the whole grid to fit.
I use this javascript:
Iam using a radgrid with detailtables in it.
Everythings works perfectly, data are shown correctly.
Now i want to resize the whole grid to fit.
I use this javascript:
<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server"><script type="text/javascript"> function pageLoad() { var grid = $find("<%= RadGrid1.ClientID %>"); var columns = grid.get_masterTableView().get_columns(); for (var i = 0; i < columns.length; i++) { columns[i].resizeToFit(); } } </script></telerik:RadCodeBlock>
Now the grid (Mastertable) is resize to fit, but the detailtables not.
What can i do to use resizeToFit() on the detailtables?
Sorry because of my english ;)