I'm using bootstrap dropdown along with ng-repeat to produce a list but I'm unable to check or uncheck the checkbox inside the div with data-toggle='dropdown'.
Checkbox works, when I remove data-toggle='dropdown'.
<div class="dropdown" ng-repeat="item in someArray">
<div class="dropdown-toggle main-title" data-toggle="dropdown">
<input type="checkbox"/>
{{item}}
<span class="caret"></span>
</div>