items.valueString(default: null)
Specifies the value that will act as an identifier for the button. Will be supplemented as a data-value attribute.
Example - set the value of items
<div id="segmentedControl"></div>
<script>
$("#segmentedControl").kendoSegmentedControl({
items: [
{ text: "Option 1", value: "option1" },
{ text: "Option 2", value: "option2" }
]
});
</script>