I have ten columns in a RadGrid and when I resize a column the grid shrinks on both sides.
How do I keep the grid at 99% and prevent it from shrinking when I resize a column
?
How do I keep the grid at 99% and prevent it from shrinking when I resize a column
?
| <telerik:RadGrid ID="RadGrid1" |
| AllowMultiRowSelection="True" |
| AllowSorting="True" |
| AllowPaging="False" |
| AutoGenerateColumns="False" |
| AllowAutomaticUpdates="True" |
| AlternatingItemStyle-HorizontalAlign="Center" |
| BackColor="#ffffff" |
| EnableEmbeddedSkins="False" |
| GridLines="None" |
| GroupingEnabled="True" |
| HeaderStyle-Height="20" |
| Height="425px" |
| ItemStyle-HorizontalAlign="Center" |
| OnSortCommand="RadGrid1_SortCommand" |
| OnNeedDataSource="RadGrid1_NeedDataSource" |
| OnItemDataBound="RadGrid1_ItemDataBound" |
| OnItemCommand="RadGrid1_ItemCommand" |
| ShowFooter="True" |
| ShowHeader="True" |
| ShowGroupPanel="True" |
| ShowStatusBar="True" |
| Skin="MySkin" |
| Width="99%" |
| runat="server"> |
| <MasterTableView DataKeyNames="ID,NAME" EnableColumnsViewState="True" EditMode="EditForms" AllowMultiColumnSorting="True" Width="100%"> |