coreui/coreui-angular

multi select validation styles

Closed this issue · 4 comments

I need validation styles like other UI elements for c-multi-select.
Are you planning doing this? or any other suggestions to do this?

To get validation color visual feedback, use the valid prop, which can be set to true | false | undefined. Currently, there are no background icons.

<c-multi-select [valid]="false">
...
</c-multi-select>
<c-multi-select [valid]="true">
...
</c-multi-select>

and the red "!" badge and form feedback?

Thanks for the fix 👍