Replace action is not captured in CKEditor onChange event
Description of the use case
Solution
window.WEBSPELLCHECKER_CONFIG = {
...
onStatistics: function(data, instance) {
if (data.action !== 'replace') {
return;
}
// React somehow on the `replace` action inside the editable field.
},
...
}PreviousHow to subscribe to addWordToUserDictionary and deleteWordFromUserDictionary actionNextUse recommendations with other writing assistance tools
Last updated
Was this helpful?