twisty / formsy-react-components

Bootstrap components for a formsy-react form.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

showRequired() / required className

BenIrving opened this issue · comments

commented

is there a way to set the required value to work with the showRequired() formsy mixin, so that the asterix is not shown for required fields?

Hi, you can hide the asterisk with css:

.required-symbol {
  display: none;
}
commented

Cheers man