items.selected Boolean
(default: false)
Toggles the selected state of the item.
Example
<nav id="bottomnav"></nav>
<script>
$("#bottomnav").kendoBottomNavigation({
items: [
{ text: "Home", icon: "home", selected: true },
{ text: "Info", icon: "info-circle" },
{ text: "Contact", icon: "envelope" }
]
});
</script>