Hi everyone,
I have a requirement for the blocks in the universal editor where for richtext editor I have to limit the text till 100 char, in the dropdown I have to show sone option by default selected. how can we achieve this.
for text fild I tried
"validation": {
"maxLength": 100
} and it works. but for richtext it is not working.
Thank you
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Views
Replies
Total Likes
Hi @dynamicuser
Can you please check here
{
"id": "another-richtext",
"fields": [
{
"component": "richtext",
"name": "rte",
"label": "Rich Text",
"valueType": "string",
"validation": {
"maxSize": 1000,
"customErrorMsg": "That's about as funny as a screen door on a battleship."
}
}
]
}
Views
Replies
Total Likes
Tried the above mentioned solution it is not working.
Views
Replies
Total Likes