How to add a hint to a true/false field?

HaniyaH
Tera Contributor

Hi,

I have a requirement to add a hint to a true/false field type. There are other fields in the system with the hint (little question mark in circle) but they seem to be reference fields.

 

I have checked the configure dictionary of the field and there is no help text field available for the form layout. How do I do this?

 

Thanks

2 ACCEPTED SOLUTIONS

Brian Lancaster
Tera Sage

Check boxes do not have hints. You could use a client script with showFieldMessage to display some text under the checkbox variable.

View solution in original post

Mouli3
Tera Expert

Hi @HaniyaH 

 

Unfortunately, This is not supported for checkbox.

For such requirements, try to write a onLoad scripts with show field message 

 

g_form.showFieldMsg('field_name''This is a sample help text''info');

 
Please mark this response as correct or helpful if it assisted you with your question.

View solution in original post

7 REPLIES 7

Brian Lancaster
Tera Sage

Check boxes do not have hints. You could use a client script with showFieldMessage to display some text under the checkbox variable.

Hi @Brian Lancaster there is some customization in my instance and I was able to do that. I can’t recall what it was now but OOB this is not possible and I would have taken this approach. Thanks so much for your help

Mouli3
Tera Expert

Hi @HaniyaH 

 

Unfortunately, This is not supported for checkbox.

For such requirements, try to write a onLoad scripts with show field message 

 

g_form.showFieldMsg('field_name''This is a sample help text''info');

 
Please mark this response as correct or helpful if it assisted you with your question.

HaniyaH
Tera Contributor

Hi @Mouli3 there is some customization in my instance and I was able to do that. I can’t recall what it was now but OOB this is not possible and I would have taken this approach. Thanks so much for your help!