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

[Solved] Inline spell checker Customize message

2 Answers 65 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Ying
Top achievements
Rank 1
Ying asked on 26 Aug 2009, 06:28 AM
Is there a way to customize the message "Spell Checking Mode. Missed Spell words are high lighted in yellow"  <verylargefinishbutton> <cancel button>

I would like to get rid of the message in my web application, and shorten the finish button to just read finish.

2 Answers, 1 is accepted

Sort by
0
Ying
Top achievements
Rank 1
answered on 26 Aug 2009, 06:04 PM
Nevermind this first question. I found out I can add Radeditor.Main.Resx to App_GlobalResources and edit those values in there. However there is another problem where that little dialogue would push the iframe down and if you have misspelled word down at the bottom, you don't get to see it. Is there a way you can resize  the height of the iframe and push the page downward when you pop that message?

thanks
0
Rumen
Telerik team
answered on 28 Aug 2009, 11:10 AM
Hi Eric,

Could you please try the following workaround, which will resize properly the editor when the spellchecker starts:

<script type="text/javascript">
 function OnClientLoad(editor, args)      
    {      
        editor.add_spellCheckLoaded(  
        function()   
        {  
            var spell = editor.get_ajaxSpellCheck();                    
            spell.add_spellCheckStart(  
                function(sender, args)   
                {                           
                    editor._updateEditorSize(editor.get_element().style.height);  
                });                             
        } );         
    }  
 </script>        
<telerik:RadEditor ID="RadEditor1" Runat="server" OnClientLoad="OnClientLoad"></telerik:RadEditor>

If your scenario is other please open a support ticket and send a screenshot of the problem and steps on how to reproduce it.

Sincerely,
Rumen
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Editor
Asked by
Ying
Top achievements
Rank 1
Answers by
Ying
Top achievements
Rank 1
Rumen
Telerik team
Share this question
or