rsp
1
We have entered the Help Text for our custom file. The text is longer and it is storing only the half of text.
How to increase the length of text?

Help Text appears temporarily while a user hovers over the field and can be used to prompt the user for the type of input desired.
I think I found it.
Go to DB → Find fields_meta_data table
Change the varchar size to 5000
ALTER TABLE fields_meta_data
MODIFY COLUMN help VARCHAR(5000)
Edit: that did not help. 
rsp
2
Does anyone know how to do it? 
You can add an “info” icon to each field using the popupHelp vardef property. Hovering it will display a popup with text.
Example:
You can do it also in custom/Extension/…/Vardef…

1 Like
rsp
4
Thank you! Will it store large text and display it when click on
icon?
Probably it would handle any length, yes. 
rsp
6
Yes, it is storing large text.
In language file, I create the new label.
‘LBL_LONG_TEXT’ => ‘Add your text here’,
In vardefs.php file, added the popupHelp
‘popupHelp’ => ‘LBL_LONG_TEXT’,
Do QR&R every time you update the text.