resize

Fired when the window is resized.

Event Data

e.sender kendo.ui.AppBar

The widget instance.

Example - subscribe to resize event

<div id="appbar"></div>
<script>
$("#appbar").kendoAppBar({
    positionMode: "sticky",
    resize: function () {
/* The result can be observed in the DevTools(F12) console of the browser. */
        console.log("Resize fired!");
    },
    items: [
        {
            type: "contentItem",
            template: "<span><input /><span>"
        },
        {
            type: "spacer"
        },
        {
            type: "contentItem",
            template: "<h1>This is just a text</h1>"
        },
    ]
});
</script>
In this article