Hi Edwin,
On the demo module in CKEditor, check out the preparation of the CKEDemo screen.
The local variable cfg_wcount is set by default to -1. If you change it tot the max length you want, user will no longer be able to enter more that the specified maximum.
The property on the input area you set in outsystems for max length has no effect, because the CKEditor " under the hood" does not use that.
Regards,
Daniel
extraPlugins: 'wordcount',
wordcount: {
// Whether or not you want to show the Paragraphs Count
showParagraphs: true,
// Whether or not you want to show the Word Count
showWordCount: true,
// Whether or not you want to show the Char Count
showCharCount: true,
// Whether or not you want to count Spaces as Chars
countSpacesAsChars: true,
// Whether or not to include Html chars in the Char Count
countHTML: false,
// Maximum allowed Word Count, -1 is default for unlimited
maxWordCount: -1,
// Maximum allowed Char Count, -1 is default for unlimited
maxCharCount: -1,
}
"