change

Fires when the value of the Rating is changed through user interaction.

Event Data

e.sender kendo.ui.Rating

The widget instance which fired the event.

e.target jQuery

The DOM element that triggered the change.

e.oldValue Number

The previous value of the widget.

e.newValue Number

The new value of the widget.

Example - handling the change event

<input id="rating" />

<script>
    $("#rating").kendoRating({
        change: function (e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
            console.log(e.target);
        }
    });
</script>
In this article