i am using bootstrap multiselect plugin
<select class="btn btn-default col-md-1" name="fw_dropdown" id="fw_dropdown" multiple="multiple" required="required">
@foreach (var fw in Model.FWIndex)
{
<option value="@fw">@fw</option>
}
</select>
after I add the required attribute, the form is able to display a message that the field is not selected. However, when I proceed to select the field, the message kept showing, which seems that the selected value cannot be received. When I reload the project and select the required field, I am able to proceed with the submit query.
How do I fix this?