I have the grid with the following settings. What is happening is when I click on the row the grid expands to the right and goes off screen. What would be causing this?
| <telerik:RadGrid ID="RadGrid2" |
| AllowMultiRowSelection="True" |
| AllowSorting="True" |
| AllowNaturalSort="True" |
| AutoGenerateColumns="False" |
| AlternatingItemStyle-HorizontalAlign="Center" |
| BackColor="#ffffff" |
| CellPadding="2" |
| CellSpacing="2" |
| GridLines="None" |
| GroupingEnabled="False" |
| HeaderStyle-Height="20" |
| Height="200" |
| ItemStyle-HorizontalAlign="Center" |
| OnItemCommand="RadGrid2_ItemCommand" |
| OnItemDataBound="RadGrid2_ItemDataBound" |
| SelectedItemStyle-ForeColor="#000000" |
| SelectedItemStyle-BackColor="lightyellow" |
| ShowHeader="True" |
| Skin="Telerik" |
| Width="100%" |
| runat="server"> |
| <MasterTableView AllowMultiColumnSorting="False" DataKeyNames="ID,NUMBER" EditMode="InPlace" TableLayout="Fixed" HeaderStyle-Wrap="false" Width="100%"> |
| <Columns> |
| ............. |
| </Columns> |
| </MasterTableView> |
| <ClientSettings AllowColumnsReorder="True"> |
| <Resizing AllowColumnResize="True" AllowRowResize="False" ResizeGridOnColumnResize="False" /> |
| <Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="True"/> |
| <Selecting AllowRowSelect="True" /> |
| </ClientSettings> |
| </telerik:RadGrid> |