Thanks to visit codestin.com
Credit goes to www.telerik.com

New to Kendo UI for jQueryStart a free 30-day trial

Tooltip

Updated over 6 months ago

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.

   <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.

    <input id="rating" name="rating">

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

See Also