New to Kendo UI for AngularStart a free 30-day trial

Represents the Kendo UI ActionSheet component for Angular. Use this component to display a set of choices related to a user-initiated task in a modal sheet that slides up from the bottom of the screen.

Definition

Package:@progress/kendo-angular-navigation

Selector:kendo-actionsheet

Export Name:Accessible in templates as #kendoActionSheetInstance="kendoActionSheet"

Syntax:

html
<kendo-actionsheet [items]="actionItems" [expanded]="true">
</kendo-actionsheet>

Inputs

Specifies the action buttons displayed in the ActionSheet footer.

Configures the layout of the action buttons in the footer. By default, actions are arranged horizontally and stretched to fill the container.

Configures the opening and closing animations for the ActionSheet (see example).

Default:

true

Applies CSS classes to the inner ActionSheet element. Accepts any value supported by ngClass.

Applies inline styles to the inner ActionSheet element. Accepts any value supported by ngStyle.

expanded

boolean

Controls whether the ActionSheet is expanded or collapsed.

Default:

false

Provides the collection of items rendered in the ActionSheet content area.

Determines whether the ActionSheet closes when the overlay is clicked.

Default:

false

subtitle

string

Sets the subtitle text displayed below the title in the header.

title

string

Sets the title text displayed in the ActionSheet header.

titleId

string

Sets the aria-labelledby attribute of the ActionSheet wrapper element. Use this option when the built-in header element is replaced through the ActionSheetHeaderTemplate or ActionSheetContentTemplate.

Events

Fires when any of the ActionSheet action buttons is clicked.

Fires when the ActionSheet is collapsed and its animation is complete.

Fires when the ActionSheet is expanded and its animation is complete.

Fires when the expanded property of the component is updated. You can use this event to provide two-way binding for the expanded property.

Fires when an ActionSheet item is clicked.

Fires when the modal overlay is clicked.

Methods

Toggles the visibility of the ActionSheet.

Parameters:expanded?boolean