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

RadPageView problem

3 Answers 54 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Luis
Top achievements
Rank 1
Luis asked on 24 Sep 2013, 06:29 PM
Hi,

I am having problems using the tab control and the radviewpage.
The information on the tabs are displaying outside and displaying as soon as the page loads.
What can I do to fix this problem?
See the attach image.

3 Answers, 1 is accepted

Sort by
0
Luis
Top achievements
Rank 1
answered on 24 Sep 2013, 06:36 PM
This is happening when there is no data to display in the grid control.
0
Shinu
Top achievements
Rank 2
answered on 25 Sep 2013, 05:08 AM
Hi Luis,

Please take a look in to the following code snippet that I tried with the same scenario.Unfortunately i couldn't replicate the issue at my end.

ASPX:
<telerik:RadTabStrip ID="MainTabs" runat="server" Width="99%" SelectedIndex="0" MultiPageID="MainMultiPageView">
    <Tabs>
        <telerik:RadTab PageViewID="EmployerTab" runat="server" Text="Employer Links">
        </telerik:RadTab>
        <telerik:RadTab PageViewID="ManagerTab" runat="server" Text="Manager Links">
        </telerik:RadTab>
    </Tabs>
</telerik:RadTabStrip>
<telerik:RadMultiPage ID="MainMultiPageView" runat="server" Width="98.9%" SelectedIndex="0"
    BorderStyle="Solid" BorderColor="#CCCCCC" BorderWidth="1px" BackColor="#FCFCFC">
    <telerik:RadPageView ID="EmployerPage" runat="server">
        <telerik:RadGrid ID="RadGrid1" runat="server" AllowPaging="false" AutoGenerateColumns="true"
            DataSourceID="SqlDataSource1">
        </telerik:RadGrid>
    </telerik:RadPageView>
    <telerik:RadPageView ID="ManagerPage" runat="server">
        <telerik:RadGrid ID="RadGrid2" runat="server" AllowPaging="false" AutoGenerateColumns="true"
            DataSourceID="SqlDataSource1">
        </telerik:RadGrid>
    </telerik:RadPageView>
</telerik:RadMultiPage>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" SelectCommand="select * from orders where orderId='123456'"
    ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"></asp:SqlDataSource>

Please provide your code if it doesn't help you.
Thanks,
Shinu.
0
Luis
Top achievements
Rank 1
answered on 21 Oct 2013, 02:37 PM
Hi,

I tried the code snippet but still the problem persists.
This only happens when the tab is selected and the save button been clicked.
The page does a post back and brakes the tab displaying the user control outside of the rad page.
If another tab is selected the user control keeps showing at the bottom of rad page.

I am thinking in droping all telerik controls from the project and use jQuery.

Any help will be very appreciated.
Thanks.
Tags
General Discussions
Asked by
Luis
Top achievements
Rank 1
Answers by
Luis
Top achievements
Rank 1
Shinu
Top achievements
Rank 2
Share this question
or