This is a migrated thread and some comments may be shown as answers.

Symbol icon - no popup (pastes last symbol)

1 Answer 69 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Isaac
Top achievements
Rank 1
Isaac asked on 20 Oct 2010, 09:17 PM
We are running Telerik version 2008.2.826.35 (and cannot update it for this particular project).

In the Editor, when I first click the Symbol icon the popup appears and I select a symbol and it enters it into the content area.

However, after the symbol is inserted, when I click the Symbol Icon again, it just inserts the same character again, the popup does not appear for me to select a different symbol. This occurs in all browsers (but we are specifically coding for IE6).

This is an urgent matter (of course :)

Thanks,
-Tamara

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 21 Oct 2010, 02:05 PM
Hello Isaac,

You can disable the built-in update header functionality of the InsertSymbol tool by using the javascript code below. Therefore every time when you click on the button it will expand its dropdown:

        <script type="text/javascript"> 
        function OnClientLoad(editor) 
        { 
            var tool = editor.getToolByName("InsertSymbol");   
            //Disable header update functionality   
            tool.set_updateHeader(false);  
        } 
        </script> 
        <telerik:RadEditor ID="RadEditor1" OnClientLoad="OnClientLoad" runat="server" ToolsFile="~/ToolsFile.xml"> 
            <Content>́́    ́   ̂ ̊ ̊̊         ̌ dsfsdf </Content> 
        </telerik:RadEditor> 




Best wishes,
Rumen
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Editor
Asked by
Isaac
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or