I want to restrict textarea characters length to 150 characters, My system.xml code is below :
...
<orderPlaceMessage translate="label">
<label>Message for order place: </label>
<frontend_type>textarea</frontend_type>
<sort_order>1</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
{how to limit character length }
</orderPlaceMessage>
...
2
Answers
You can use
<validate>
tag to restrict textarea characters length to 150 characters.You can add a comment as well to let the user know what is the desired range.
Please find two solutions below.
Solution 1:-
Add the following to the
<orderPlaceMessage>
element:Solution 2:-
I Hope it’s helpful for you.