New to Kendo UI for jQuery? Download free 30-day trial

    Tooltip

    Each Rating item displays a tooltip that is enabled by default and contains text that is equal to the value of the item.

    Getting Started

    The following example demonstrates how to use the default tooltip of the Rating.

    Open In Dojo
       <input id="rating" name="rating">
    
        <script>
            $(document).ready(function() {
                $("#rating").kendoRating({
                    min: 1,
                    max: 6
                });
            });
        </script>

    Disabling Tooltips

    Setting the tooltip option to false prevents the items to display tooltips when hovered.

    Open In Dojo
        <input id="rating" name="rating">
    
        <script>
            $(document).ready(function() {
                $("#rating").kendoRating({
                    min: 1,
                    max: 6,
                    value: 3,
                    tooltip: false
                });
            });
        </script>