Ok, my problem is that i have the columns generated at runtime in my grid, and i want the columns to overun so it scrolls like in the example http://demos.telerik.com/aspnet-ajax/grid/examples/client/scrolling/defaultcs.aspx
The problem is that the columns are resising when more get added to fit the space they are in, and not just over flowing to allow horizontal scrolling.
You can find a preview image here:
http://x-volt.com/pics/telerik_grid-resize_problem.jpg
My code is in a Rad MultiPage tab window, i dont know if thats playing up with it, but i was wondering if anyone can help? The display code is:
<telerik:RadMultiPage ID="MP" runat="server" CssClass="tabMultiPage" meta:resourcekey="MPResource1" SelectedIndex="0" >
<telerik:RadPageView ID="T1" runat="server" height="420px" width="97%" Selected="True" meta:resourcekey="T1Resource1">
<div style="text-align:center;">
<asp:label id="lblNoGraphData" runat="server" cssclass="Warning" Text="There is no data to view for these dates." meta:resourcekey="lblNoGraphDataResource1" />
</div>
<c1webchart:c1webchart id="WebChart" Height="420px" Width="960px" runat="server" imagetransfermethod="File" meta:resourcekey="WebChartResource1">
</c1webchart:c1webchart>
</telerik:RadPageView>
<telerik:RadPageView ID="T2" runat="server" height="420px" width="100%" meta:resourcekey="T2Resource1" >
<asp:label id="lblNoData" runat="server" cssclass="DataGridInfoText" Text="There is no data to view for these dates." meta:resourcekey="lblNoDataResource1" />
<!- -----------------------TELERIK GRID START----------------------- -->
<telerik:RadGrid ID="uxTelerikGrid" runat="server" Skin="Office2007" AutoGenerateColumns="true">
<ClientSettings>
<Scrolling AllowScroll="True" UseStaticHeaders="True" ScrollHeight="100%" />
</ClientSettings>
<ExportSettings IgnorePaging="True" OpenInNewWindow="True">
<Pdf AllowCopy="True" AllowModify="True" Author="eSightEnergy" Keywords="None" PageBottomMargin="1in" PageLeftMargin="1in" PageRightMargin="1in" PageTopMargin="1in" PageTitle="Asset List Export" Subject="Asset List Export" Title="Asset List Export" PaperSize="A4" PageHeight="297mm" PageWidth="210mm" />
</ExportSettings>
<MasterTableView AutoGenerateColumns="true">
</MasterTableView>
</telerik:RadGrid>
</telerik:RadPageView>
</telerik:RadMultiPage>
Thanks for your help,
Simon