How to Dynamically Change Form Label Colors

How to Dynamically Change Form Label Colors

Comments

  • How do I change form label color based on dynamic input? I.e. If the form receives "True" a label becomes green, and if "False" the label becomes red.

  • You could do this by using an HTML Display component instead of a label. If you set the Source Type to “Data” and set the Display Mode to “Inline”, you can pass in a string with html tags to set the color of the text. Then all you need to do is set up the logic to the right tags depending on if you are displaying True or False.

Sign In or Register to comment.