<kendo:actionSheet-actionButton>

A JavaScript array that contains the ActionSheet's action buttons configuration. They will be rendered in the footer of the widget.

Example

<kendo:actionSheet-actionButtons>
    <kendo:actionSheet-actionButton></kendo:actionSheet-actionButton>
</kendo:actionSheet-actionButtons>

Configuration Attributes

click java.lang.String

Specifies the click event handler of the action button.

Example

<kendo:actionSheet-actionButton click="click">
</kendo:actionSheet-actionButton>

disabled boolean

If set to true, the action button will be disabled.

Example

<kendo:actionSheet-actionButton disabled="disabled">
</kendo:actionSheet-actionButton>

fillMode java.lang.String

Controls how the color is applied to the button. Valid values are: "solid", "outline", "flat", "link", and "none". Default value is "solid".

Example

<kendo:actionSheet-actionButton fillMode="fillMode">
</kendo:actionSheet-actionButton>

icon java.lang.String

Specifies the icon's name of the action button.

Example

<kendo:actionSheet-actionButton icon="icon">
</kendo:actionSheet-actionButton>

iconClass java.lang.String

Specifies the icon's class of the action button.

Example

<kendo:actionSheet-actionButton iconClass="iconClass">
</kendo:actionSheet-actionButton>

rounded java.lang.String

Controls what border radius is applied to a button. Valid values are: "small", "medium", "large", "full", and "none". Default value is "medium".

Example

<kendo:actionSheet-actionButton rounded="rounded">
</kendo:actionSheet-actionButton>

size java.lang.String

Controls the overall physical size of a button. Valid values are: "small", "medium", "large", and "none". Default value is "medium".

Example

<kendo:actionSheet-actionButton size="size">
</kendo:actionSheet-actionButton>

text java.lang.String

Specifies the text of the action button.

Example

<kendo:actionSheet-actionButton text="text">
</kendo:actionSheet-actionButton>

themeColor java.lang.String

Controls the main color applied to the button. Valid values are: "base", "primary", "secondary", "tertiary", "info", "success", "warning", "error", "dark", "light", "inverse", and "none". Default value is "base".

Example

<kendo:actionSheet-actionButton themeColor="themeColor">
</kendo:actionSheet-actionButton>

Event Attributes

click String

Specifies the click event handler of the action button.

Example

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

Event Tags

kendo:actionSheet-actionButton-click

Specifies the click event handler of the action button.

Example

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