Hi I am bit new to angular, I have used a code in my view which references a clockpicker bootstrap plugin to pick the time.
<div class="row" ng-repeat="ScheduleData in viewScheduleData.schedule">
<div class="col-md-3">{{ScheduleData.day}}</div>
<div class="col-md-3">
<div class="input-group clockpicker">
<input type="text" class="form-control" value="{{ScheduleData.time_start}}">
<span class="input-group-addon"><span class="glyphicon glyphicon-time"></span>
</span>
</div>
</div>
but its not working when the components are loaded, but the clockpicker works fine individually