<kendo:appBar>
A JSP wrapper for Kendo UI AppBar.
Configuration Attributes
position java.lang.String
Defines where in the page the AppBar will be positioned
Example
<kendo:appBar position="position">
</kendo:appBar>
positionMode java.lang.String
Defines the type of positioning
Example
<kendo:appBar positionMode="positionMode">
</kendo:appBar>
themeColor java.lang.String
Specifies the color of the component
Example
<kendo:appBar themeColor="themeColor">
</kendo:appBar>
Configuration JSP Tags
kendo:appBar-items
An array with objects representing the appbar items.
More documentation is available at kendo:appBar-items.
Example
<kendo:appBar>
<kendo:appBar-items></kendo:appBar-items>
</kendo:appBar>
Event Attributes
resize String
Fired when the window is resized.
For additional information check the resize event documentation.
Example
<kendo:appBar resize="handle_resize">
</kendo:appBar>
<script>
function handle_resize(e) {
// Code to handle the resize event.
}
</script>
Event Tags
kendo:appBar-resize
Fired when the window is resized.
For additional information check the resize event documentation.
Example
<kendo:appBar>
<kendo:appBar-resize>
<script>
function(e) {
// Code to handle the resize event.
}
</script>
</kendo:appBar-resize>
</kendo:appBar>