Cannot change spellcheck

Hello, 

the problem is simple. I want to set a spellcheck attribute on RTE body to true. I am not able to find any way how to do it, because my editor is in iframe mode and this is hardcoded into srcdoc attribute. In version 22.2.12 code looks like this:

IframeContentRender.prototype.renderPanel = function () {
var rteObj = this.parent;
var rteContent = Object(_base_util__WEBPACK_IMPORTED_MODULE_2__["getEditValue"])(rteObj.value, rteObj);
var iFrameBodyContent = '<body spellcheck="false" autocorrect="off" contenteditable="true">' +
rteContent + '</body></html>';

When I edit srcdoc in created event editor can't save content, but default browser spellcheck works. Of course this is already wrong solution.

Is there any way how acompllish this?

Thanks for replies.

 


3 Replies

VJ Vinitha Jeyakumar Syncfusion Team October 26, 2023 12:43 PM UTC

Hi Filip,

Currently, we don’t have the required feature support in our component. But we have already considered this as a feature request and will be implemented in any of our upcoming release. Since we don’t have an immediate plan to implement this feature. 
 

But, You can achieve it from application end by using a third-party library.
 
Reference links  

Integrate a spell checker

If you would like to check spelling and grammatical issues while you type in the content area of our Rich Text Editor component, you can do so by integrating a third-party library, WebSpellChecker, which provides a cloud spell-checking service.  
Download the trial or paid version of WebSpellChecker and you will receive an activation key in your registered email. This is mandatory to initialize and configure the spell checking in the application.  
1. Add the WebSpellChecker WProofreader script reference in your index.html page.  
1  
2. Now, initialize the WebSpellChecker within the index.html page using the Windows configuration variable along with its other required options such as autoSearch, enableGrammar, and serviceId.  
1  
2  
3  
4  
5  
6  
7  
8  
<script>   
window.WEBSPELLCHECKER_CONFIG = {   
autoSearch: true,   
enableGrammar: true,   
        // Get the activation key from your registered account   
serviceId: '1:kir4Z3-3VEfP-o8bLS2-iIYiz2-2xQou3-vM58l3-D9AUu3-7cBdu2-2GuIt2-tehUv-OOBiI-qc'   
};   
</script>  
    
Spell check implemented in Rich Text Editor  
Note: Only when the serviceId option is assigned with a valid activation key will the spell-checking functionality work in the Rich Text Editor.  
Please check the above reference links to integrate the spell checker in your application. 
Regards, 
Vinitha 


RB Rahul Bhowmik June 28, 2024 04:12 PM UTC

What is expected timeline for getting rich text editor spell checker



VJ Vinitha Jeyakumar Syncfusion Team July 1, 2024 11:07 AM UTC

Hi Rahul Bhowmik,


We would like to inform you that, we don't have any plans to implement this SpellCheck feature within our product source. We have the plans to include this SpellCheck feature using the third party integration in application end as we suggested in our last update.

Regards,
Vinitha

Loader.
Up arrow icon