enabled Boolean (default: true)

If set to false, the Rating will be:

  • disabled and will not allow the user to change its state.
  • excluded from the tab order and not receiving focus.
  • will not submit its value if part of a form.

Example - disable the Rating

<input id="rating" />

<script>
    $("#rating").kendoRating({
        enabled: false
    });
</script>
In this article