Select gives required error when i did select elements
So I have the following form element:
But when I try to submit it/go to the next step in the wizard it fails the required rule? Even though i have something selected
3 Replies
Step code:
settings returns a array that contains that form element
I do have these console errors: vewire Entangle Error: Livewire property 'mountedTableActionData.testing' cannot be found
(
if you have dynamic schemas then you need to make sure the form is initialised properly
to do that, use afterStateUpdated() on the type field to $set the value of the multiselect to be an empty array
that will ensure it is initialised
Thanks! That works!