Validation on checkbox set selector

2
Validation works if the value is originally empty. However, (1) the error message displayed is black rather than red so doesn't stand out very much (2) When validation is fixed by the user, the error message is not going away. Does anyone have any tips? Thanks, Tracy
asked
1 answers
0

Hi Tracy,

I tried it and came to the same conclusion. Could you create a ticket for this issue?

A work-around could be to add a format string underneath it.

  1. Give the cell the format string is in the class: alert-danger
  2. Make the cell conditional visible, using a boolean called something like: ValidCheckbox
  3. When invalid change the boolean to invalid and show the validation message
  4. When valid, change the boolean to valid and hide the validation message.
answered