Re: drop down customization not working

  •  07-01-2010, 9:45 PM

    Re: drop down customization not working

    Hi ahager,
     
    try
     
    1. <%@ Page Language="C#" %>   
    2.   
    3. <%@ Register Namespace="CuteEditor" Assembly="CuteEditor" TagPrefix="CE" %>   
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    5. <html xmlns="http://www.w3.org/1999/xhtml">   
    6. <head id="Head1" runat="server">   
    7.     <title>Untitled Page</title>   
    8. </head>   
    9.   
    10. <script runat="server">   
    11.     
    12.     protected override void OnLoad(EventArgs e)   
    13.     {   
    14.         CuteEditor.ToolControl toolctrl = ceContentLegend.ToolControls["Codes"];   
    15.         if (toolctrl != null)   
    16.         {   
    17.             CuteEditor.RichDropDownList dropdown = (CuteEditor.RichDropDownList)toolctrl.Control;   
    18.             CuteEditor.RichListItem richitem = dropdown.Items[0];   
    19.             dropdown.Items.Clear();   
    20.             dropdown.Items.Add(richitem);   
    21.             dropdown.Items.Add("line 1""<h1>is line 1</h1>");   
    22.             dropdown.Items.Add("line 2""<h2>is line 1</h2>");   
    23.             dropdown.Items.Add("line 3""<h2>is line 1</h2>");   
    24.         }   
    25.   
    26.         base.OnLoad(e);   
    27.     }   
    28. </script>   
    29.   
    30. <body>   
    31.     <form id="form1" runat="server">   
    32.         <CE:Editor ID="ceContentLegend" runat="server">   
    33.         </CE:Editor>   
    34.     </form>   
    35. </body>   
    36. </html>  
    Regards,
     
    ken
View Complete Thread