enable
Changes the enabled state of the Rating.
Parameters
enable Boolean
Enables or disables the Rating.
Example
<input id="rating" />
<script>
var ratingInstance = $("#rating").kendoRating().data("kendoRating");
ratingInstance.enable(false);
</script>