Add scroll bar on Multi Line Text
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2023 09:46 PM
Hi.
I am looking for the way to fix height of Multi Line Text in catalog item.
Best plan is show scroll bar when over the limit.
At least i make Multi Line Text stop expanding.
Thank you for help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2023 11:11 PM
Then you can write a on change catalog client script (on your multi line variable) to restrict the characters as per your need:
var mul = g_form.getValue('var_name');
if(mul.length>200) // modify character limit as per your req.
{
alert("length cannot exceed 200");
return false;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2023 11:16 PM
I can not expect max length about Multi Line Text. so i am looking for apply max_height to MLT.