|
Rank: Member Groups: Member
Joined: 9/6/2007 Posts: 29
|
I have nested splitters, and set the MinHeight for the Bottom Pane. Unfortunately, it appears to be ignored, because I can move the slider to where the bottom pane disappears. If I don't set any Min or Max, the panes vanish and there is no way to get it back. MaxHeight seems to work, but because the Splitter resizes itself, I need to MaxHeight to be dynamically adjusted client side, and there does not appear to be a way to do that. I was able to recreate the problem in the Demo code (note the MinHeight="50" in the bottom nested pane):
Code: HTML/ASPX
<eo:Splitter runat="server" Width="400px" Height="200px" id="Splitter1" BorderStyle="Solid" DividerSize="10"
BorderWidth="1px" BorderColor="#B5B5B5" ControlSkinID="None" DividerImage="00080411" DividerCenterImage="00080412"
ClientSideOnResized="OnSplitterResized">
<eo:SplitterPane id="SplitterPane1" Width="100px" runat="server">
<DIV style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; PADDING-TOP: 5px">Left
Pane Contents
</DIV>
</eo:SplitterPane>
<eo:SplitterPane id="SplitterPane2" runat="server" ScrollBars="None">
<eo:Splitter runat="server" Width="300px" Height="200px" id="Splitter2" BorderStyle="Solid" DividerSize="10"
BorderWidth="0px" ControlSkinID="None" DividerImage="00080431" Orientation="Horizontal"
DividerCenterImage="00080432">
<eo:SplitterPane id="Splitterpane3" Width="100px" runat="server">
<DIV style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; PADDING-TOP: 5px">
Top Pane Contents
</DIV>
</eo:SplitterPane>
<eo:SplitterPane id="Splitterpane4" runat="server" MinHeight="50">
<DIV style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; PADDING-TOP: 5px">
Bottom Pane Contents
</DIV>
</eo:SplitterPane>
</eo:Splitter>
</eo:SplitterPane>
</eo:Splitter>
Any thoughts?
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,193
|
Hi,
Thanks for your post. MinHeight is meant to be applied on the same level, not on nested levels. For example, Splitterpane4's MinHeight is applied when Splitterpane3 resizes, but not when Splitterpane1 resizes. However given your scenario, it's perfectly reasonable to expect it is also be applied when Splitterpane1 resizes. So we will look into it and see what we can do.
Thanks
|
|
Rank: Member Groups: Member
Joined: 9/6/2007 Posts: 29
|
Just to clarify - it is not a nesting issue. It appears that the right panel does not honor the MinWidth or MinHeight
Code: HTML/ASPX
<eo:Splitter runat="server" Width="300px" Height="200px" id="Splitter1" BorderStyle="Solid" DividerSize="10"
BorderWidth="1px" BorderColor="#B5B5B5" ControlSkinID="None" DividerImage="00080101" DividerCenterImage="00080412"
Orientation="Vertical">
<eo:SplitterPane id="SplitterPane1" Width="100px" runat="server" MinWidth="50">
<DIV style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; PADDING-TOP: 5px">Left
Pane Contents</DIV>
</eo:SplitterPane>
<eo:SplitterPane ID="SplitterPane2" runat="server" MinWidth="50">
<DIV style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; PADDING-TOP: 5px">Right
Pane Contents</DIV>
</eo:SplitterPane>
</eo:Splitter>
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,193
|
Thanks for the additional information. We will look into it and see what we can do.
|
|
Rank: Newbie Groups: Member
Joined: 7/18/2007 Posts: 5
|
Has this issue been resolved?
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,193
|
Robert Maxey wrote:Has this issue been resolved? Not yet. We will rely when it is resolved. Thanks for your patience!
|
|
Rank: Member Groups: Member
Joined: 9/6/2007 Posts: 29
|
Wondering what the status is. I am trying to release our product, but this issue is holding me up. If it is not resolved very soon I will need to yank the feature that uses the splitters (which will leave me with very unhappy bosses)
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,193
|
Hi,
Unfortunately it has not been fixed yet. We will try to fix it in this week. Sorry about the delay!
Thanks
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,193
|
This issue has been fixed in the newly released EO.Web Controls 2008.
|
|