This is a migrated thread and some comments may be shown as answers.

[Solved] Columns don't frozen in radpageview

1 Answer 71 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Flavio Lepka
Top achievements
Rank 1
Flavio Lepka asked on 17 Nov 2009, 12:33 AM
When I try to freeze a column in a RadGrid from the second radpageview just not working, only when this first.
How can I fix this?
following the example below

<telerik:RadScriptManager ID="RadScriptManager" runat="server">
        </telerik:RadScriptManager>
   
                <telerik:RadTabStrip ID="RadTabStrip1" runat="server" Skin="Web20" MultiPageID="RadMultiPage1"
                SelectedIndex="0" Align="Justify" ReorderTabsOnSelect="true" Width="347px"   >
                <Tabs>
                    <telerik:RadTab Text="1">
                    </telerik:RadTab>
                    <telerik:RadTab Text="2">
                    </telerik:RadTab>
                                      
                </Tabs>
            </telerik:RadTabStrip>
            <telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0"
                Width="345px">
                <telerik:RadPageView ID="RadPageView1" runat="server">
               <telerik:RadGrid ID="RadGrid3" Width="750px" DataSourceID="SqlDataSource1" GridLines="None"
                 runat="server">
                <ClientSettings>
                    <Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="true" FrozenColumnsCount="1">
                    </Scrolling>
                </ClientSettings>
                <SortingSettings SortedBackColor="BurlyWood" />
                <MasterTableView TableLayout="Auto" />
                <HeaderStyle Width="200px" />

            </telerik:RadGrid>
                   
                </telerik:RadPageView>
               <telerik:RadPageView ID="RadPageView2" runat="server">
                   <telerik:RadGrid ID="RadGrid2" Width="750px" DataSourceID="SqlDataSource1" GridLines="None"
                     runat="server">
                    <ClientSettings>
                        <Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="true" FrozenColumnsCount="1">
                        </Scrolling>
                    </ClientSettings>
                    <SortingSettings SortedBackColor="BurlyWood" />
                    <MasterTableView TableLayout="Auto" />
                    <HeaderStyle Width="200px" />

                </telerik:RadGrid>
                  
               </telerik:RadPageView>
                
            </telerik:RadMultiPage>
   
           <asp:SqlDataSource ID="SqlDataSource1"
            runat="server"
            ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString_Teste %>"
            SelectCommand="SELECT * FROM Customers"></asp:SqlDataSource>



Flavio Lepka

1 Answer, 1 is accepted

Sort by
0
Pavlina
Telerik team
answered on 18 Nov 2009, 04:19 PM
Hi Flavio,

In order to achieve the desired functionality, please set RenderSelectedPageOnly property on RadMultiPage to true and AutoPostBack property of RadTabStrip to true.

Please give this suggestion a try and see if it helps.

Sincerely yours,
Pavlina
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Grid
Asked by
Flavio Lepka
Top achievements
Rank 1
Answers by
Pavlina
Telerik team
Share this question
or