Add Label to Support Forms | Community
Skip to main content

Add Label to Support Forms

  • August 14, 2023
  • 2 replies
  • 0 views

I am looking to have a label appear based on what value a user entered in a drop down.

Now it is setup to use a dropdown and a condition.

I.E. if it is set to high a specific checkbox appears, if it is set to Low a different checkbox appears

I would like to move aware from checkboxes as it is causing some confusion to end users. 

Is there a way just to use a label or message?

2 replies

Zsa
  • August 15, 2023

Hello Stephen, 

We don't have native functionality to add a label under the drop-down field based on the value selected. It may require custom coding to add just a label. For example: 

$('.request_custom_fields_<dropdownID>').after( "<p>sample text</p>" );

But I have found these community posts asking for the same functionality:


  • Author
  • September 1, 2023

Thank you. This worked for what I was hoping to do.