|
Rank: Newbie Groups: Member
Joined: 5/17/2009 Posts: 2
|
Hello I tried to use the Splitter control. In ie7 after resizing browse window the splitter every time shrinked. In ie6 resizing and restoring browser window causes to disappering of the splitter pains content. More, first time the page loaded I can see only one pane. There is my code sample:
Code: HTML/ASPX
<body dir="rtl">
<form id="form1" runat="server">
<eo:Splitter AutoFillWindow="true" WidthMargin="0" HeightMargin="0" runat="server" id="explorerTable" BorderStyle="Solid" DividerSize="10"
BorderWidth="1px" BorderColor="#B5B5B5" ControlSkinID="None" DividerImage="00080411" DividerCenterImage="00080402" CollapseLeft="False" RightToLeft="true">
<eo:SplitterPane ScrollBars="None" id="SplitterPaneTree" runat="server" Height="100%">
<div style ="height:100%;width:100%;background-color:Green"></div>
</eo:SplitterPane>
<eo:SplitterPane Width="80%" id="SplitterPaneGrid" runat="server" ScrollBars="None" Height="100%">
<div style ="height:100%;width:100%;background-color:Red"></div>
</eo:SplitterPane>
</eo:Splitter>
</form>
</body>
Do I do something wrong? Looking forward for your reply.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
You can not use percentage width on the SplitterPane. Try to give the first splitter a fixed width (for example, "200px") and that should show you both panes when the page is loaded. Note the first splitter is on the right side in RTL mode.
We did notice that the splitter does not automatically re-fill the whole window when the window is resized. I am not sure if this is what you meant by "splitter every time shrinked". This is an issue and we will look into it and see what we can find. The problem occurs on both IE 6 and IE 7.
We did not notice splitter pane disappearing issue on IE 6. Can you set the fixed width and see if you still see it disappearing on IE 6?
Thanks!
|
|
Rank: Newbie Groups: Member
Joined: 5/17/2009 Posts: 2
|
Looks like fixed size prevent disappearing of the content.... But AutoFill mode - what is the solution for shrinking? And why the autofill mode not catch actually 100% of the window's width?
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
We have posted a new build that should resolve the AutoFill issue. Please see your private message for download location.
You may also want to set the body element's margins to 0 because by default the body element has margins on all 4 sides.
Thanks!
|
|
Rank: Newbie Groups: Member
Joined: 5/18/2009 Posts: 3
|
I have almost the same issue with the splitter control, can you send me the new build please.. I recently bought the licence just a few hours ago. Thank u
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi Juan,
Please check your private message for the download location.
Thanks!
|
|
Rank: Newbie Groups: Member
Joined: 5/18/2009 Posts: 3
|
Hi,
I took the installer that you sent me, recently I tried again to build a simple web page with the new control suite but the splitter didn't fill the whole window of the browser (IE 7-8) also when I tested in firefox, google chrome and safari and it show me the scroller bars.
I will attach u the code in the following lines and please tell me if I'm doing wrong or not:
In the <head></head> tag: <style type="text/css"> <!-- body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; } --> </style>
In the <body></body> tag: <form id="form1" runat="server"> <div> <eo:Splitter ID="Splitter1" runat="server" Height="200px" Width="300px" AutoFillWindow="True" BorderColor="#A0A0A0" BorderStyle="Solid" BorderWidth="1px" CollapseButtonHoverImage="00080103" CollapseButtonImage="00080102" ControlSkinID="None" DividerImage="00080101" DividerSize="6" ExpandButtonHoverImage="00080105" ExpandButtonImage="00080104"> <eo:SplitterPane ID="SplitterPane1" runat="server" Height="180px" Width="100px"> menu </eo:SplitterPane> <eo:SplitterPane ID="SplitterPane2" runat="server" Height="180px" Width="100px"> hello world </eo:SplitterPane> </eo:Splitter> </div> </form>
Thanks.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
To Juan,
This issue was fixed in build 2008.0.84.
Thanks
|
|