readonly
Changes the read-only state of the Rating.
Parameters
readonly Boolean
Defines whether the Rating will render in its read-only state.
Example
<input id="rating" />
<script>
var ratingInstance = $("#rating").kendoRating().data("kendoRating");
ratingInstance.readonly(true);
</script>