I'm trying to use a Jquery plugin (Star Rating plugin - link) inside AngularJS's ng-repeat directive but I dont know why its not working. If I try out outside Angular's scope then its doing its job flawlessly.
<div ng-controller="MyController">
<div ng-repeat="datum in data">
<span>Name : {{datum.name}}</span><br/>
<span>Age : {{datum.age}}</span><br/>
<input id="rater" class="rating" value={{datum.rate}} min=0 max=5 step=1><!--Third party rating plugin-->
</div>
</div>
The html input which get parsed as a Star rating with value fetched from backend via ajax request. I guess the culprit seems to be the timing, Jquery completes its task before Angular does, so is there any other way to accomplish this one? Thanks in Advance.