- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2023 04:11 PM
I want to add help text below variable on catalog item form which cannot be closed by user. I don't want close sign next to the text. I tried using help text but it is showing close button.
When I do same in PDI, it works as expected.
Show Help= True
Always expand= True
Help Text= Help Text Message.
Can you please help me with it.
Thank You!
Rutuja K
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2024 09:59 PM
1. Create a widget
HTML body :
<div>
<p>{{::data.msg1}}</p>
</div>
Server Script:
2. Create Custom With Label type variable.
Add above widget in this variable.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2023 05:18 PM - edited 05-25-2023 05:23 PM
You can create a Catalog Client Script onLoad/onChange, and use
g_form.showFieldMessage('number','Help Text Message','info');
Please mark the appropriate response as correct answer and helpful, This may help other community users to follow correct solution.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2023 05:21 PM
Hi Zack, thank you for the response.
I tried that as well, but the message comes below single line text box number field. I want to show help text above input box.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2024 09:59 PM
1. Create a widget
HTML body :
<div>
<p>{{::data.msg1}}</p>
</div>
Server Script:
2. Create Custom With Label type variable.
Add above widget in this variable.