Hi Telerik team,
I have an issuew ith the grid that I can't figure out. I have a RadTabStrip with MultipPage and each has a grid in it. The grids work perfect initially when I load them through Ajax. However, when I change tabs (they are cached now), the grids lose their scrollbars! What is causing this? Also, radgrid has a default.skin file that applies styles to all grids.
I have an issuew ith the grid that I can't figure out. I have a RadTabStrip with MultipPage and each has a grid in it. The grids work perfect initially when I load them through Ajax. However, when I change tabs (they are cached now), the grids lose their scrollbars! What is causing this? Also, radgrid has a default.skin file that applies styles to all grids.
<div > <telerik:RadTabStrip ID="test" AutoPostBack="true" SelectedIndex="0" runat="server" MultiPageID="mpTest
" OnTabClick="test_TabClick" SkinID="MySkinID"> <Tabs> <telerik:RadTab Text="tab 1" /> <telerik:RadTab Text="tab 2" /> <telerik:RadTab Text="tab 3" /> </Tabs> </telerik:RadTabStrip></div><div> <telerik:RadMultiPage ID="mpTest" SelectedIndex="0" runat="server" OnPageViewCreated="mpTest_PageViewCreated"> </telerik:RadMultiPage></div><telerik:RadGrid runat="server" > <MasterTableView ShowHeadersWhenNoRecords="False"/> <HeaderStyle HorizontalAlign="Left" VerticalAlign="Bottom"></HeaderStyle> <ItemStyle HorizontalAlign="Left" VerticalAlign="Top"></ItemStyle> <AlternatingItemStyle HorizontalAlign="Left" VerticalAlign="Top"></AlternatingItemStyle> <ClientSettings EnableRowHoverStyle="False"> <Scrolling AllowScroll="True" SaveScrollPosition="True" UseStaticHeaders="True" ScrollHeight="500px" /> <Selecting AllowRowSelect="True" /> </ClientSettings></telerik:RadGrid>