Skip to content

Required Notification Not Showing on multiple select #81

Closed
@ghost

Description

I'm using your multiple select dropdown and i have added the required attribute onto the select but if i did not select any of the options it does not display the Please Select An Item In The List message as normally it would on Google Chrome version 69.0.3497.100. Any issues here or I have missed out anything

<select name="colab[]" id="colab" class="form-control" placeholder="Select Your Member" required multiple>
    <option value="" disabled>Select Your Member</option>
    @foreach ($allUser as $users)
    <option value="{{$users->u_id}}">{{$users->name}}</option>
    @endforeach
</select>

new SlimSelect({
    select: '#colab',
    placeholder: 'Select Your Member',
});

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions