multi field rte | Community
Skip to main content
vijayk87714775
Level 4
April 25, 2017
Solved

multi field rte

  • April 25, 2017
  • 1 reply
  • 587 views

I have an multi field rte where I need to restrict number of chars to specific limit. I have written custom validation, it does give an alert that max chars exceeded. if I close the alert and push okay button on the dialog with out changing the content. (meaning keeping the exceeded chars as is) it is showing the same content.
please help

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by kautuk_sahni

Here is an article that talks about how to validate values that an author enters in a dialog. You need to write app logic to perform validation on dialog values- as discussed in the article. 

https://helpx.adobe.com/experience-manager/using/creating-touchui-validate.html

 Add a listener (validator) on click of OK button of dialog checking the length of the characters entered in RTE and validate accordingly.

 

Reference article:- http://10codes.blogspot.in/2014/02/adding-custom-listener-on-rich-text.html

//Adding custom listener on rich text component in cq5 to impose maximum number of characters

 

I hope this helps.

~kautuk

1 reply

kautuk_sahni
Community Manager
kautuk_sahniCommunity ManagerAccepted solution
Community Manager
April 26, 2017

Here is an article that talks about how to validate values that an author enters in a dialog. You need to write app logic to perform validation on dialog values- as discussed in the article. 

https://helpx.adobe.com/experience-manager/using/creating-touchui-validate.html

 Add a listener (validator) on click of OK button of dialog checking the length of the characters entered in RTE and validate accordingly.

 

Reference article:- http://10codes.blogspot.in/2014/02/adding-custom-listener-on-rich-text.html

//Adding custom listener on rich text component in cq5 to impose maximum number of characters

 

I hope this helps.

~kautuk

Kautuk Sahni