I have a grid with auto-layout set and most of the columns are sized correctly. However, the first three get lots of extra space to the right. I'm attaching an image and my grid definition...
Any ideas where that's coming from?
thanks!
Any ideas where that's coming from?
thanks!
<telerik:RadGrid ID="RadGrid1" Width="100%" Height="450px" AllowPaging="True" PageSize="15" |
runat="server" AllowSorting="False" OnNeedDataSource="RadGrid1_NeedDataSource" |
GridLines="None" AllowFilteringByColumn="False" ShowGroupPanel="False" EnableHeaderContextMenu="False" |
OnColumnCreated="RadGrid1_ColumnCreated" OnColumnCreating="RadGrid1_ColumnCreating" |
OnDataBound="RadGrid1_DataBound" OnPreRender="RadGrid1_PreRender" EnableViewState="false" |
OnItemDataBound="RadGrid1_ItemDataBound"> |
<HeaderContextMenu EnableAutoScroll="True"> |
</HeaderContextMenu> |
<MasterTableView Width="100%" AutoGenerateColumns="true" EnableColumnsViewState="false" TableLayout="Auto" /> |
<PagerStyle Mode="NextPrevAndNumeric" |
FirstPageImageUrl="/images/pagingfirst.gif" |
LastPageImageUrl="/images/paginglast.gif" |
NextPageImageUrl="/images/pagingnext.gif" |
PrevPageImageUrl="/images/pagingprev.gif" /> |
<ClientSettings AllowColumnsReorder="False" AllowDragToGroup="False" ReorderColumnsOnClient="False" |
Resizing-AllowColumnResize="False" Resizing-AllowRowResize="False" Resizing-ClipCellContentOnResize="False" |
Resizing-EnableRealTimeResize="True" Resizing-ResizeGridOnColumnResize="True"> |
<Scrolling AllowScroll="True" UseStaticHeaders="True" /> |
</ClientSettings> |
<FilterMenu EnableTheming="False"> |
<CollapseAnimation Duration="200" Type="OutQuint" /> |
</FilterMenu> |
</telerik:RadGrid> |