<kendo:aIPrompt-toolbarItem>

An array of toolbar items to display in the header Toolbar. They will be rendered after the items generated from the configurations of the views.

Example

<kendo:aIPrompt-toolbarItems>
    <kendo:aIPrompt-toolbarItem></kendo:aIPrompt-toolbarItem>
</kendo:aIPrompt-toolbarItems>

Configuration Attributes

click java.lang.String

The click event handler of the toolbar item.

Example

<kendo:aIPrompt-toolbarItem click="click">
</kendo:aIPrompt-toolbarItem>

fillMode java.lang.String

Sets a value controlling how the color is applied.

Example

<kendo:aIPrompt-toolbarItem fillMode="fillMode">
</kendo:aIPrompt-toolbarItem>

icon java.lang.String

The icon name of the toolbar item.

Example

<kendo:aIPrompt-toolbarItem icon="icon">
</kendo:aIPrompt-toolbarItem>

rounded java.lang.String

Sets a value controlling the border radius.

Example

<kendo:aIPrompt-toolbarItem rounded="rounded">
</kendo:aIPrompt-toolbarItem>

themeColor java.lang.String

Sets the color according to the applied theme.

Example

<kendo:aIPrompt-toolbarItem themeColor="themeColor">
</kendo:aIPrompt-toolbarItem>

type java.lang.String

Defines the type of the item.

Example

<kendo:aIPrompt-toolbarItem type="type">
</kendo:aIPrompt-toolbarItem>

Event Attributes

click String

The click event handler of the toolbar item.

Example

<kendo:aIPrompt-toolbarItem click="handle_click">
</kendo:aIPrompt-toolbarItem>
<script>
    function handle_click(e) {
        // Code to handle the click event.
    }
</script>

Event Tags

kendo:aIPrompt-toolbarItem-click

The click event handler of the toolbar item.

Example

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