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

Splitter Pane not resizing with window

2 Answers 83 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
Sean
Top achievements
Rank 1
Sean asked on 24 Jun 2014, 03:14 PM
I have an issue where the pane is not resizing correctly and I'm trying to figure out in what scenarios this might happen.

I have two pages with a splitter inside of a RadTabStrip both splitters should be 100% of the width and they both have a fixed width left pane.

Page A when I resize the window the right pane resizes to fit the space.
Page B when I resize if I make the window larger the right pane does not fill the allotted space if I make the window more narrow the contents overlap the allotted space.

I can see that the fixed pixels are being set in the RAD_SPLITTER_PANE_CONTENT in both Page A and Page B but in Page B the width is not being updated when the resize happens.

Any ideas?

2 Answers, 1 is accepted

Sort by
0
Sean
Top achievements
Rank 1
answered on 24 Jun 2014, 03:15 PM
I should also mention that I'm on 2011 Q2
0
Vessy
Telerik team
answered on 25 Jun 2014, 04:26 PM
Hi Sean,

By design each RadPane can contain not more than one nested Splitter - this is why, can you please verify that the MultiPage control on your page is not nested into another RadSplitter? If this is the case, you will need to make the following configurations:
  • Set the RadMultiPage's RenderSelectedPageOnly property to "True" so only the current PageView's Splitter will be taken into account:
    <telerik:RadMultiPage runat="server" ID="MultiPage1" RenderSelectedPageOnly="true">
        <telerik:RadPageView runat="server" ID="PageView1" Selected="true" >
        ...
  • Set the RadTabStrip's AutoPostBack property to "true" to make the above work properly:
    <telerik:RadTabStrip runat="server" ID="TabStrip1" MultiPageID="MultiPage1" AutoPostBack="true">
        ...
    </telerik:RadTabStrip>

If this is not the case, though, I will need to examine the exact configuration causing the error. You can see how to isolate the issue into a sample project in this blog post, so you can send it to us for a further investigation.

Kind regards,
Vessy
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
Splitter
Asked by
Sean
Top achievements
Rank 1
Answers by
Sean
Top achievements
Rank 1
Vessy
Telerik team
Share this question
or