- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2022 02:48 AM
Hello,
is there any way to change dynamically the help text of a variable on a catalog item on portal???
For example, based on the "Activity" field, I would like to change dynamically the help text on the "Additional Information" field.
Thank you for your assistance,
Smith.
Solved! Go to Solution.
- Labels:
-
Scripting and Coding

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2022 03:06 AM
Hi,
Unfortunately that is not possible. All you can do is use showFieldMsg() instead in a Client script.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2022 03:06 AM
Hi,
Unfortunately that is not possible. All you can do is use showFieldMsg() instead in a Client script.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2022 03:40 AM
Thanks this might help also 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2022 09:07 AM
For anyone finding this thread, I was able to solve this issue using the .getField() function to dynamically add/change a field's help text.
Example:
var f = g_form.getField("field_name");
f.expand_help = true;
f.instructions = "<p>information text</p>";
f.help_tag = "More information";
I only tested this for Service Portal.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2023 08:14 AM
For me following is not working. I thinkg g_form.getField() is deprecated.
g_form.getField("field_name");
Any examples of using g_form.getHelpTextControl()?