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

FooterTemplate

configuration

The text or the function whose result will be shown within the footer of the ActionSheet. The footer template will be disregarded if there are actionButtons defined in the widget options.

If the content that is passed to the ActionSheet includes scripts, they will be executed. If this is not desired, strip any undesired content in advance.

footerTemplate

String|Function
<div id="actionsheet"></div>
<script>
    var actionsheet = $('#actionsheet').kendoActionSheet({
        title: 'Title',
        contentTemplate: () => "This is a content template",
        footerTemplate: () => "This is a footer template"
    }).data('kendoActionSheet');

    actionsheet.open();
</script>
Not finding the help you need?
Contact Support