Textbox in toolbar is readonly???

  •  05-25-2009, 7:08 AM

    Textbox in toolbar is readonly???

    Hi,
     
    I created a new toolbar and inside that toolbar I have a textbox.
    The strange thing is I can't type text into it.
    Page_Load:
    CuteEditor.ToolControl tct = rtb.ToolControls["myToolbar"];
    TextBox txt = new TextBox() { ID = "txtName" };
    tct.Control.Controls.Add(txt);
    I see the textbox, but cant get focus in it or type any text.
     
    What do I do wrong?
     
    Regards,
    Maarten
View Complete Thread