I'm using jQuery multiple select with checkbox options here is my control
<div id="main-wrapper" ng-app="MyApp">
<div ng-controller="ngCtrl" style="background:#efefef; border-radius:5px; padding:15px; margin:15px 0px;">
<label class="col-md-4 control-label" for="rolename">Role Name</label>
<select id="dates-field2" class="multiselect-ui form-control" multiple="multiple">
<option value="cheese">Cheese</option>
<option value="tomatoes">Tomatoes</option>
<option value="mozarella">Mozzarella</option>
<option value="mushrooms">Mushrooms</option>
<option value="pepperoni">Pepperoni</option>
<option value="onions">Onions</option>
</select>
</div>
</div>
But the problem is that this control is placed inside the ng-controller
and ng-app
so of AngularJS. So when I open the controller and checked the checkbox inside it that it is not working like it suppose to work to do.