|
Rank: Member Groups: Member
Joined: 4/12/2009 Posts: 12
|
I m using EO splitter in bilingual website it is working fine in LTR but when i switched to RTL that splitter working same line LTR not RTL, means if i drag Left to Right so its increase width Right to left but it should work if I drag splitter RTL so it should increase with Right to left.
any Idea about it ?
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
Thanks for reporting the issue. We will look into it and see if we can enhance splitter to support RTL. We will post again as soon as any progress is made.
Thanks!
|
|
Rank: Member Groups: Member
Joined: 4/12/2009 Posts: 12
|
Hi,
How long you will take i have to buy that splitter but i just stuck because of that...
technically that is not a big deal please reply me as soon as you can...
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
We have a planed update next week. We will see if we can address this issue with that build.
Thanks!
|
|
Rank: Member Groups: Member
Joined: 4/12/2009 Posts: 12
|
could you let me know ?
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Absolutely. We will reply here again as soon as we have an update on this issue.
|
|
Rank: Member Groups: Member
Joined: 4/12/2009 Posts: 12
|
Thanks!
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
We have posted a new build that addressed this issue. Please see your private message for download location.
Thanks!
|
|
Rank: Member Groups: Member
Joined: 4/12/2009 Posts: 12
|
My problem still same... its not solved in this build... :(
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
In that case please provide a test page with detailed step by step instruction on how you would reproduce the problem. We will then use your page to verify the problem. Our test page works fine here.
Thanks!
|
|
Rank: Member Groups: Member
Joined: 4/12/2009 Posts: 12
|
below is the sample page...
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="samplePage.aspx.cs" Inherits="samplePage" %>
<%@ Register Assembly="EO.Web" Namespace="EO.Web" TagPrefix="eo" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="rtl"> <head id="Head1" runat="server"> <title>ExampleSplitterError</title> </head> <body> <form id="form1" runat="server"> <asp:ScriptManager ID="ProjectsLayoutScriptManager" runat="server" EnablePartialRendering="True"> </asp:ScriptManager> <div style="height: 100%; width: 100%;position:absolute;top:0;left:0;"> <asp:UpdatePanel ID="ProjectContentUpdatePanel" runat="server"> <ContentTemplate> <eo:Splitter ID="Splitter1" runat="server" Orientation="vertical" DividerImage="00080431" AutoFillWindow="True" ExpandCollapseButtonAlign="Center" ExpandButtonImage="00080432" Height="100%"> <eo:SplitterPane ID="topPane" runat="server" Width="300px" PersistScrollPosition="True" MinWidth="200" MaxWidth="400" ScrollBars="auto"> <asp:Panel ID="Panel1" runat="server"> <table> <tr> <td> Hello left </td> </tr> </table> </asp:Panel> </eo:SplitterPane> <eo:SplitterPane ID="botPane" runat="server" PersistScrollPosition="True" ScrollBars="auto"> <asp:Panel ID="Panel2" runat="server"> <table> <tr> <td> Hello right </td> </tr> </table> </asp:Panel> </eo:SplitterPane> </eo:Splitter> </ContentTemplate> </asp:UpdatePanel> </div> </form> </body> </html>
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
We looked into your test page and noticed the problem is caused by MinWidth and MaxWidth. We will post a new build shortly to fix this.
The previous build fixed RTL problem when MinWidth and MaxWidth is not set. However it did not fix the issue when MinWidth and MaxWidth is set. The new build should fix this problem.
Thanks!
|
|
Rank: Member Groups: Member
Joined: 4/12/2009 Posts: 12
|
Hi, this is not related to min width and max width. you developer develop it for english means they are adding values in x axis through javascript but in rtl we have to do opposite, we have to subtracting values in x axis. please let me know when this problem resolved.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Mohsin Meghani wrote:you developer develop it for english means they are adding values in x axis through javascript but in rtl we have to do opposite, we have to subtracting values in x axis. We are aware of that. That's exactly what build .73 fixed. Before build .73, it always add value in x axis. However since build .73, it automatically detects whether the element is in RTL mode and if it is, then subtract the value instead of adding it. However the code that checks for min/max width also needs to perform similar logics, while it did not. As a test, try to remove min/maxWidth on your splitter pane in your test code. You will see build .73 work fine for you. Once you put back min/maxWidth, you will see your original problem. We will have build .74 for you today that will also fix the min/maxWidth part. Hope this clears up. Thanks
|
|
Rank: Member Groups: Member
Joined: 4/12/2009 Posts: 12
|
YAHOOOOOOOO!
ok I cheered up.. :p
now tell me when i can get new build.. :p
|
|