Hi,
I need to change small text fields height.
Can we change the height of small text field ?
Thank you
We added a Small Text in the lead and the field name is sm.
Please apply the custom/client script.
frappe.ui.form.on('Lead', {
refresh: function(frm) {
$("textarea[data-fieldname='sm']").css({'height':'70'});
}
});
Before:
After added a code:
Thank You!
5 Likes
Thank you So Much