Hi,
It seems no matter what element width I set on my RadGrid parent element, the RadGrid forces the parent elements width to be 100%
I have overridden the rgGridData class and it has no effect, the top-level parent element always expands.
Sample code below:
<table border="1" width="500px;"> <tr> <td> <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> </telerik:RadScriptManager> <telerik:RadGrid ID="rGridSearchResults" Width="500px" runat="server" Height="500px"> <ClientSettings Scrolling-AllowScroll="true" Scrolling-ScrollHeight="500px"> </ClientSettings> <MasterTableView Width="500px" Height="500px"> <NoRecordsTemplate> No Results</NoRecordsTemplate> </MasterTableView> </telerik:RadGrid> </td> </tr> </table>Any ideas?