Enforce field height
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2022 12:38 PM
I have a field on a form that I need to fix the height on. The information in this field currently expands the 4000 char field and distorts the form layout.
If there a way to enforce a field height, yet provide scrolling when the field data exceeds the fields height?
Thanks.
- Labels:
-
Instance Configuration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2022 12:40 PM
Hello
You can use field style for it .
Right click on the field name and you can see configure style and click on it
and in the style section enter the code
height: 100px !important; // Set the height size according to your preference.
Please mark my answer correct if it helps you

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2022 12:47 PM
For that go to html type field, to have scrollable format,
If you still want string only, you can go with Field style, have a look at below link for ref:
Aman Kumar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2022 07:36 PM
Hi use the below in Onload client script
g_form.getControl('fieldname').style.length = '3000px';
Harish