I've got a RadGrid that I'm populating via AJAX. For some reason, the horizontal scrolling bar is not showing up. The columns are chopped off to the right side, and the rest of the columns don't show.
Here is what my .aspx page looks like:
Any suggestions on how to get that horizontal scrolling bar?
Thanks!
Here is what my .aspx page looks like:
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" ClientEvents-OnRequestStart="requestStart"> <telerik:RadGrid ID="radQueryResults" runat="server" Visible=false AutoGenerateColumns="true" ClientSettings-Selecting-AllowRowSelect="true" AllowMultiRowSelection="true" Width="1000" > <ClientSettings> <Scrolling AllowScroll="true" ScrollHeight="400px" UseStaticHeaders="true" /> </ClientSettings> <MasterTableView CommandItemDisplay="Top" TableLayout="Auto" > <CommandItemSettings ShowExportToExcelButton="true" ShowAddNewRecordButton="false" ShowRefreshButton="false" ></CommandItemSettings> </MasterTableView> <ExportSettings> <Excel Format="Biff"></Excel> </ExportSettings> </telerik:RadGrid>Any suggestions on how to get that horizontal scrolling bar?
Thanks!