How to Add Hint on a form field

Community Alums
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2024 05:07 AM
Is there a way to always show a hint on a string field on a form????
I tried to do this but I wanted it to always be visible. I do not want to click on the ? icon.
Anyone help me out????
Tks!!!!!!!!!!
11 REPLIES 11

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2024 08:00 AM
I thought about this...but the customer don't really want to set the field....just to use like an example field. Exactly the same way we use on catalog item using the "Example text" feature.
So I guess there's no way to do this.
Tks anyway!
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2025 08:59 AM
I have the same requirement and I created OnLoad client script
Example:
function onLoad() {
function onLoad() {
//Type appropriate comment here, and begin script below
g_form.setValue('short_description', 'Title of the Article');
g_form.setValue('text', 'Content of the Article');
}