Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How To show Rating (Angular.js)

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 684
    Comment on it

    How to show Rating Dynamically

    If you want to show rating dynamically you can follow the code below. Here phone.rating contains rating and it comes dynamically.

    1. <html>
    2. <div class="rating-block clearfix" funboard-rating rating-value="phone.rating" max="5" >
    3. </div>
    4. </html>
    5.  
    6.  
    7. <script>
    8. phonecatApp.directive('funboardRating', function () {
    9. return {
    10. restrict: 'A',
    11. template: '<div class="ratingStar1">' +
    12. '<span ng-repeat="star in stars" ng-class="star">' +
    13. '\&#9733' +
    14. '</span>' +
    15. '</div>',
    16. scope: {
    17. ratingValue: '=',
    18. max: '='
    19. },
    20. link: function (scope, elem, attrs) {
    21. scope.stars = [];
    22. for (var i = 0; i < scope.max; i++) {
    23. scope.stars.push({filled1: i < scope.ratingValue});
    24. }
    25. }
    26. }
    27. });
    28. </script>
    29.  
    30. css:
    31.  
    32. .ratingStar1{color: #a9a9a9;}
    33. .ratingStar1 span{
    34. display: inline-block;
    35. position: relative;
    36. width: 1.1em;
    37. color:#fff;
    38. font-size:22px;
    39. }
    40. .ratingStar1 {width:100%}
    41. .ratingStar1 .filled1 {color: #f83833;}

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: