How to Add Hint on a form field

Community Alums
Not applicable

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!!!!!!!!!!

 

 

LeonardoMirand_0-1711022715552.pngLeonardoMirand_1-1711022742786.png

 

11 REPLIES 11

Community Alums
Not applicable

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!

I have the same requirement and I created OnLoad client script

Example:

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');
}