Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

deactivate spellcheck in textarea

Engaged ,
Dec 07, 2017 Dec 07, 2017

Hi,

I have a textarea in my panel and the spellcheck is turned on (I see the red curly underlining).

Is that the chrome spellcheck? Is there a way to turn it off ?

Thanks Stefan

1.0K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Guru , Dec 10, 2017 Dec 10, 2017

sberic's answer worked for me

<textarea spellcheck="false">

Translate
Guru ,
Dec 07, 2017 Dec 07, 2017

Command line parameter ?

disable-asynchronous-spellchecking

See chromium/chrome_switches.cc at master · adobe/chromium · GitHub

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Dec 07, 2017 Dec 07, 2017

Added this to the manifest, restarted InDesign but still no luck:

<CEFCommandLine>

            <Parameter>-disable-asynchronous-spellchecking</Parameter>

</CEFCommandLine>

The curly underlining still shows.

Any other ideas ?

Thanks Stefan

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guru ,
Dec 07, 2017 Dec 07, 2017

Well it should be <Parameter>--disable-asynchronous-spellchecking</Parameter> with -- and not just - but I just tried that and it didn't work.

There is an experimental spell flag mentioned in that file but I highly doubt that will work.

I don't have any other ideas, maybe someone else will have.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Dec 08, 2017 Dec 08, 2017

You should be able to handle this in your HTML. Take a look at this StackOverflow answer.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guru ,
Dec 10, 2017 Dec 10, 2017

sberic's answer worked for me

<textarea spellcheck="false">

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Dec 10, 2017 Dec 10, 2017
LATEST

Works for me :

<textarea spellcheck="false">

Thank you very matsch!

Stefan

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines