actionButtonsOrientationString
(default: "horizontal")
Determines the orientation of the action buttons in the footer. Valid values are "horizontal"
and "vertical"
.
Example
<div id="actionsheet"></div>
<script>
var actionsheet = $('#actionsheet').kendoActionSheet({
title: 'Confirmation',
actionButtonsOrientation: "vertical",
actionButtons: [
{
text: "Confirm",
icon: "check",
fillMode: "solid",
themeColor: "primary",
click: onClick
},
{
text: "Cancel",
icon: "x",
fillMode: "flat",
click: onClick
}
]
}).data('kendoActionSheet');
function onClick(e) {
e.preventDefault();
actionsheet.close();
}
actionsheet.open();
</script>
In this article