I’m having formating issue when I’m usign components within ng-repeat. For the dropdown I had to manually add the arrow-down icon and for checkbox it doesn’t work at all.
Am I missing something?
In the following Example the first input is ok, but the one embedded in the ng-repeat is not getting the right formatting
<form name="form" mobiscroll-form novalidate>
<div class="mbsc-form-group">
<label>
First Name
<input mbsc-input id="firstname1" type="text" />
</label>
<label ng-repeat="item in activeSection.questions | orderBy:'order'">
{{item.title}}
<input mbsc-input id="test1" type="text" />
</label>
</div> </form>