readonly Boolean
(default: false)
If set to true
, the Rating will:
- be in readonly state and will not allow the user to change its state.
- be included in the tab order and able to receive focus.
- submit data if part of a form.
Example
<input id="rating" />
<script>
$("#rating").kendoRating({
readonly: true
});
</script>