items.encoded Boolean (default: true)

If false, the text will be able to render HTML.

Example

<nav id="bottomnav"></nav>

<script>
    $("#bottomnav").kendoBottomNavigation({
        items: [
            { text: "<strong>Home</strong>", icon: "home", encoded: false },
            { text: "<strong>Info</strong>", icon: "info-circle", encoded: true },
            { text: "Contact", icon: "envelope" }
        ]
    });
</script>
In this article