<kendo:appBar-item>

An array with objects representing the appbar items.

Example

<kendo:appBar-items>
    <kendo:appBar-item></kendo:appBar-item>
</kendo:appBar-items>

Configuration Attributes

className java.lang.String

Defines a set CSS classes for the item.

Example

<kendo:appBar-item className="className">
</kendo:appBar-item>

template java.lang.String

The template which renders as content for the appbar item. Valid only for the contentItem type

Example

<kendo:appBar-item template="template">
</kendo:appBar-item>

type java.lang.String

Defines the type of item

Example

<kendo:appBar-item type="type">
</kendo:appBar-item>

width java.lang.Object

Determines the width of the item. Valid only for the spacer items. Numeric values are treated as pixels.

Example

<kendo:appBar-item width="width">
</kendo:appBar-item>

Event Attributes

template String

The template which renders as content for the appbar item. Valid only for the contentItem type

Example

<kendo:appBar-item template="handle_template">
</kendo:appBar-item>
<script>
    function handle_template(e) {
        // Code to handle the template event.
    }
</script>

Event Tags

kendo:appBar-item-template

The template which renders as content for the appbar item. Valid only for the contentItem type

Example

<kendo:appBar-item>
    <kendo:appBar-item-template>
        <script>
            function(e) {
                // Code to handle the template event.
            }
        </script>
    </kendo:appBar-item-template>
</kendo:appBar-item>
In this article
Not finding the help you need?