Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
215
WebHtmlEditor -change "Insert" ddl items
posted

Hello,

I'm using a  webhtmleditor for my first time,  looks great my problem is that i want to change the items of "Insert" ( greeting,Signature)

but i didnt find where the text came from?How do i add more items to the list?

Any help will be appreciated,

Shlomit

 

Parents
No Data
Reply
  • 24497
    posted

    Hi Shlomit,

    You need to change Value of items in Insert. It can be done in aspx or in codes. Example:

    <ighedit:WebHtmlEditor ID="WebHtmlEditor1" runat="server" ...>
     
    <Toolbar ..>
       
    <
    ighedit:ToolbarDropDown runat="server" Type="Insert">
         
    <Items>
          
    <ighedit:ToolbarDropDownItem runat="server" Text="Hello" Value="Hello,&lt;br /&gt;" />
          
    <ighedit:ToolbarDropDownItem runat="server" Text="Alex" Value="Alex&lt;br /&gt;Tel. (201) 123-4567&lt;br /&gt;" />
        
    </Items>
      </ighedit:ToolbarDropDown>

Children
No Data