Add Help Text to field on incident table.

Service Manager
Kilo Guru

Hi,

How can we make different help text visible based on choice selected. This functionality must be added on Incident table field.

Thanks

1 ACCEPTED SOLUTION

So you can add

 

function onChange(control, oldValue, newValue, isLoading) {

g_form.hideFieldMsg('variablename',true);

if(newValue=='aa')
     g_form.showFieldMsg('variablename','your help text a','info');

else if(newValue=='bb')
     g_form.showFieldMsg('variablename','your help text b','info');

else
     g_form.showFieldMsg('variablename','your help text c','info');

 

}

 

Thanks

 

View solution in original post

7 REPLIES 7

Upender Kumar
Mega Sage

Hi,

 

You can add below script on change event

 

g_form.hideFieldMsg('variablename',true);
g_form.showFieldMsg('variablename','your help text','info');

g_form.addInfoMessage('variable name');

 

Thanks

Please Hit Correct, ️Helpful depending on the impact of the response

Upender Kumar
Mega Sage

You can add below script on change event

 

g_form.hideFieldMsg('variablename',true);
g_form.showFieldMsg('variablename','your help text','info');

 

Thanks

Please Hit Correct, ️Helpful depending on the impact of the response

Service Manager
Kilo Guru

you want me to create a event ?

or client script on change

the requirement is to add 3 different help-text to a field which differs based on choice selected from choice list.

 

Thanks

Hi,

Create client script on change of that field.

 

Thanks