selectedValueString(default: null)
The selected value of the component. Must match the value of one of the items.
Example - set the selected value
<div id="segmentedControl"></div>
<script>
$("#segmentedControl").kendoSegmentedControl({
selectedValue: "option2",
items: [
{ text: "Option 1", value: "option1" },
{ text: "Option 2", value: "option2" },
{ text: "Option 3", value: "option3" }
]
});
</script>