barbatus / stars-rating

Stars rating control for Meteor
MIT License
21 stars 11 forks source link

Input dynamic rating? #3

Closed DevanB closed 9 years ago

DevanB commented 9 years ago

I've been trying to figure out if it is possible to do something like this?

{{#each oms}}
    <div class="row">
        <div class="col-xs-6">
            <label for="rating">Rating</label>
            {{> starsRating rating="{{rating}}" id="omRating" class="awesome" size=20 mutable=true}}
         </div>
    </div>
{{/each}}
paulbrab commented 9 years ago

Try it without the curly braces and quotes

{{> starsRating rating=rating id="omRating" class="awesome" size=20 mutable=true}}