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

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

 

I really appreciate.

Thanks

ryannnnnnnnnnnn
Tera Contributor