showText
Toggles the visibility of all items' text elements in the BottomNavigation.
Parameters
show Boolean
A bool value to toggle the visibility state of the text element.
Example
<nav id="bottomnav"></nav>
<script>
var bottomNav = $("#bottomnav").kendoBottomNavigation({
items: [
{ text: "Home", icon: "home" },
{ text: "Info", icon: "info-circle" },
{ text: "Contact", icon: "envelope" }
]
}).data("kendoBottomNavigation");
bottomNav.showText(false);
</script>