• Introduction
  • Getting Started
  • Vue 2 End of Support
  • Native Components
    • Animation
    • Buttons
    • Chartsupdated
    • Conversational UInew
    • Data Query
    • Data Tools
    • Date Inputs
    • Date Math
    • Dialogs
    • Drawing
    • Dropdownsupdated
    • Editor
    • Excel Export
    • File Saver
    • Form
    • Gauges
    • Grid
    • Icons
    • Indicators
    • Inputs
    • Labels
    • Layoutupdated
    • ListBox
    • ListView
    • Notification
    • PDF Processing
    • Popup
    • Progress Bars
    • Scheduler
    • ScrollView
    • Tooltip
    • TreeList
    • TreeView
    • Upload
  • Wrapper Components
  • Sample Applications
  • Styling & Themes
  • Common Features
  • Project Setup
  • Knowledge Base
  • Changelog
  • FAQ
  • Troubleshooting
New to Kendo UI for Vue? Start a free 30-day trial

Custom Rendering

The ActionSheet component has the following building blocks:

  • Header— Rendered on top of the content. By default, it includes a title and a subTitle.
  • Content— Renders the main content area of the ActionSheet. By default, it contains a list of items that you can split into two groups. The content can be completely customized.
  • Footer— Rendered below the content area of the ActionSheet.

The ActionSheet allows you to use custom components to customize the appearance of its building blocks.

To render custom content, you can use the following properties in a combination with a slot template:

  • header — Specifies the template that will be used in the header section of the ActionSheet.
  • content — Specifies the template that overrides the Content building block section.
  • footer — Specifies the template that will be displayed in the footer area of the ActionSheet.

Header Customization

Use the header property to customize the header section of the ActionSheet.

The header prop definition overrides the ActionSheet's title and subTitle options.

The following example demonstrates the usage of the header property in action.

Example
View Source
Change Theme:

Content Customization

The content property allows you to completely customize the main content area of the ActionSheet. This enables you to render custom content even when an items collection is not provided.

The following example demonstrates the usage of the component property in action.

Example
View Source
Change Theme:

Use the footer property to render a footer below the Content ActionSheet area.

The following example demonstrates the the usage of the footer property in action.

Example
View Source
Change Theme: