Content Menu and Drop Down Positions Off-Set

Last post 11-28-2005, 4:02 AM by nicolas.gravelle. 2 replies.
Sort Posts: Previous Next
  •  11-24-2005, 9:36 AM 12981

    Content Menu and Drop Down Positions Off-Set

    Hi,
     
    We've just started with the trial version
    The editor is placed in a pageview, inside a multipage with the ie:tabstrip webcontrol.
     
    When you expand any of the dropdown lists, or right click to get a context menu, the object appears offset from it's correct position.
     
    what is the solution, somebody already ask the question in this forum, but there is no answer
     
    it's urgent, my boss wants to know if we buy cuteditor or rade editor
    thanks you
  •  11-24-2005, 11:54 AM 12995 in reply to 12981

    Re: Content Menu and Drop Down Positions Off-Set

    Hi nicolas,
     

    We have the following example. And it works ok.
     
    http://cutesoft.net/example/TabStrip.aspx

    Can you post your code?

    Keep me posted.

     
     

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  11-28-2005, 4:02 AM 13124 in reply to 12995

    Re: Content Menu and Drop Down Positions Off-Set

     
    'in the aspx file:
     
     <TABLE id="Table1" cellSpacing="1" cellPadding="1" width="770" border="0">
                                  <TBODY>
                                                                            <TR>
                                              <TD><iewc:tabstrip id="TabStrip1" runat="server" TabSelectedStyle="background-color:#f7f7de;color:#000000" TabHoverStyle="background-color:#777777" TabDefaultStyle="background-color:#6B696B;font-family:verdana;   font-weight:bold;font-size:8pt;color:#ffffff;width:79;height:21;   text-align:center" TargetID="MultiPage1">
                                                          <iewc:Tab Text="Page 1"></iewc:Tab>
                                                          <iewc:TabSeparator />
                                                          <iewc:Tab Text="Page 2"></iewc:Tab>
                                                          <iewc:TabSeparator />
                                                          <iewc:Tab Text="Page 3"></iewc:Tab>
                                                          <iewc:TabSeparator />
                                                    </iewc:tabstrip></TD>
                                              <td align="right"><asp:button id="valider" runat="server" Text="valider"></asp:button></td>
                                        </TR>
                                        <TR>
                                              <TD colSpan="2"><iewc:multipage id="MultiPage1" runat="server" width="770" backcolor="#f7f7de"></iewc:multipage></TD>
                                        </TR>
                                  </TBODY></TABLE>

     <TABLE id="Tab_editor" cellSpacing="1" cellPadding="1" width="100%" border="0" runat="server">
                                  <TR>
                                        <TD>
                                        <CE:Editor id="Editor1" EditorWysiwygModeCss="example.css" runat="server" ></CE:Editor>
                                       
                                        </TD>
                                  </TR>
                                  <TR>
                                        <TD></TD>
                                  </TR>
                                  <TR>
                                        <TD ><TD>
                                  </TR>
                                  <TR>
                                        <TD></TD>
                                  </TR>
                            </TABLE>
     
     'in the sub load in aspx.vb
     
     If Not IsPostBack Then
                MultiPage1.Controls.Add(page1)
                MultiPage1.Controls.Add(page2)
                MultiPage1.Controls.Add(page3)
                page1.Controls.Add(Tab_propriete)
                page2.Controls.Add(Tab_editor)

    end if
     
    thanks for your help !
View as RSS news feed in XML