items.enabledBoolean(default: true)

Configures whether an individual button can be enabled or disabled.

Example - disable a specific item

<div id="segmentedControl"></div>
<script>
$("#segmentedControl").kendoSegmentedControl({
  items: [
    { text: "Option 1", value: "option1" },
    { text: "Option 2", value: "option2", enabled: false },
    { text: "Option 3", value: "option3" }
  ]
});
</script>
In this article
items.enabled
Not finding the help you need?
Contact Support