Re: Fonts and sizes

  •  02-27-2009, 7:07 AM

    Re: Fonts and sizes

    Hi,
     
    I found the bug;
     
    - Create an HTML table with runat = server.
    - In code behind create a new editor instance with an ID
    - Add the editor to the htmltablecell
     
    Now the dropdownmenu's are broken...
     
    test.aspx:
     
    <table runat="server" id="table">
       <tr><td></td></tr>
    </table>
     
    test.aspx.cs:
     
    protected void Page_Load(object sender, EventArgs e) {
       Editor editor = new Editor();
       editor.ID = "test";
       ToolControl toolctrl = editor.ToolControls["Codes"];
       table.Rows[0].Cells[0].Controls.Add(editor);
    }
     
     
    How can this be solved?
View Complete Thread