How modify the width of the link treeview

  •  05-06-2009, 1:17 PM

    How modify the width of the link treeview

    Hi,
     
      I'm currently filling the links dropdown list programatically, I want to enlarge the width of the treeview after opening the dropdown list (the one that display my links). Is there any way to accomplish that?
     
    Here is some sample code:
     

     

       CuteEditor.ToolControl links = htmlEditor.ToolControls["LinkTree"];
       if (links != null)
       {
        CuteEditor.TreeDropDownList linkList = (CuteEditor.TreeDropDownList)links.Control;

        linkList.Items.Clear();

        CuteEditor.TreeListItem root = new CuteEditor.TreeListItem("Pages", null);
        ...   
        linkList.Items.Add(root);
      }
     
    Thanks
View Complete Thread