Jump to content
  • 0

Rich Text Field - Spell Check


LWSChad

Question

5 answers to this question

Recommended Posts

  • 0

I decided to use TinyMCE again

TinyMCE - https://www.tinymce.com/

 

Using TinyMCE,,,

 

Browser Spellcheck works

Rich Text editing on Android works

Cut Copy Paste is more powerful

 

Check it out if you need a fully functional Rich Text editor

It's Awesome

//load tinyMCE
    tinymce.init({
    selector:'textarea#InsertRecordEmailBody',
    statusbar: false,
    plugins: "autolink charmap code textcolor contextmenu emoticons fullscreen hr image imagetools link nonbreaking paste spellchecker",
    toolbar: [
	'fullscreen | undo redo | cut copy paste | alignleft aligncenter alignjustify alignright',
	'bold italic underline superscript subscript | forecolor backcolor | fontselect fontsizeselect',
	'image link | charmap emoticons | hr nonbreaking | removeformat | code'],
    menubar: "",
    contextmenu: "cut copy paste | image link | bold italic underline | hr nonbreaking | spellchecker",
    default_link_target: "_blank",
    browser_spellcheck: true,
    font_formats: 'Arial=arial,helvetica,sans-serif;'+ 'Arial Black=arial black,avant garde;'+ 'Comic Sans MS=comic sans ms,sans-serif;'+ 'Courier New=courier new,courier;'+ 'Georgia=georgia,palatino;'+ 'Impact=impact,chicago;'+ 'Tahoma=tahoma,arial,helvetica,sans-serif;'+ 'Times New Roman=times new roman,times;'+ 'Trebuchet MS=trebuchet ms,geneva;'+ 'Ubuntu=Ubuntu,verdana,sans-serif;'+ 'Verdana=verdana,geneva;'
});

-CHAD

Link to comment
Share on other sites

  • 1

Hi Chad,

 

Livejournal has the same problem.

You can disable Editor, than spell checkers should work, if it works for you.

 

Thank you for the suggestion.

 

I reached out to Caspio support, and they said I should add it to the IdeaBox. (?!?)

 

http://ideabox.caspio.com/forums/164206-caspio-bridge/suggestions/10970004-rich-text-editor-spell-check

Link to comment
Share on other sites

  • 0

Hi - I just wanted to share this sample use case. If you wish to disable the spellcheck, you can use spellcheck="false" to turn off spellcheck.You can use this code in the Footer of the DataPage:

<script>

document.querySelector("textarea[name='InsertRecordFIELDNAME']").spellcheck=false;

</script>

The code sample is from an element of Text Area, for other elements - you will need to select the right element such as the input.

For reference: https://www.w3schools.com/howto/howto_html_spellcheck_disable.asp

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...