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

deactivate spellcheck in textarea

Engaged ,
Dec 07, 2017 Dec 07, 2017

Copy link to clipboard

Copied

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

Views

784

Translate

Translate

Report

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">

Votes

Translate

Translate
Guru ,
Dec 07, 2017 Dec 07, 2017

Copy link to clipboard

Copied

Command line parameter ?

disable-asynchronous-spellchecking

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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.

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

sberic's answer worked for me

<textarea spellcheck="false">

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

LATEST

Works for me :

<textarea spellcheck="false">

Thank you very matsch!

Stefan

Votes

Translate

Translate

Report

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