Re: TemplateItemList drop downs causing unexpected line break

  •  07-08-2011, 9:32 AM

    Re: TemplateItemList drop downs causing unexpected line break

    Hi sincell,
     
    I tested the following code and it works fine on my end:

    <%@ Page Language="C#"%>
    <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>
    <html>
        <head>
      <title>ASP.NET WYSIWYG Editor - Default Configuration </title>
     </head>
     <body>
            <form runat="server">  
      <CE:Editor id="Editor1" TemplateItemList="bold, italic" runat="server" ></CE:Editor><br />
      </form>
     </body>
    </html>

    <script runat="server">
     void Page_Load(object sender, System.EventArgs e)
      {
             if (!IsPostBack)
             {
                 Editor1.Text = "Type Here";
             }  
      } 
    </script>

     

    Can you extract your code to one simple and runnable example which can reproduce this issue? You can post the code here, we will test this issue based on your code. 
     
    Thanks for asking
View Complete Thread