$(function(){
var actionSheet = $("#action-sheet").dxActionSheet({
dataSource: actionSheetItems,
title: "Choose action",
onCancelClick: function() {
showNotify("Cancel");
},
onItemClick: function(value) {
showNotify(value.itemData.text);
},
}).dxActionSheet("instance");
function showNotify(value) {
DevExpress.ui.notify("The \"" + value + "\" button is clicked.");
}
$("#button").dxButton({
text: "Click to show Action Sheet",
onClick: function() {
actionSheet.option("visible", true);
}
});
$("#show-title").dxSwitch({
value: actionSheet.option("showTitle"),
onValueChanged: function(e) {
actionSheet.option("showTitle", e.value);
}
});
$("#show-cancelbutton").dxSwitch({
value: actionSheet.option("showCancelButton"),
onValueChanged: function(e) {
actionSheet.option("showCancelButton", e.value);
}
});
});
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>DevExtreme Demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script>
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.5/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.5/css/dx.light.css" />
<script src="https://cdn3.devexpress.com/jslib/20.2.5/js/dx.all.js"></script>
<script src="data.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css" />
<script src="index.js"></script>
</head>
<body class="dx-viewport">
<div class="demo-container">
<div id="action-sheet"></div>
<div id="button" class="button"></div>
<div class="options">
<div class="caption">Options</div>
<div class="option">
<span>Show title</span>
<div id="show-title"></div>
</div>
<div class="option">
<span>Show cancel button</span>
<div id="show-cancelbutton"></div>
</div>
</div>
</div>
</body>
</html>
.button {
width: 280px;
display: block;
margin: 20px auto;
}
.options {
padding: 20px;
background-color: rgba(191, 191, 191, 0.15);
left: 0;
position: absolute;
bottom: 0;
right: 0;
}
.caption {
font-size: 18px;
font-weight: 500;
}
.option {
margin-top: 10px;
line-height: 28px;
text-align: right;
display: inline-block;
width: 100%;
}
.option > span {
float: left;
}
var actionSheetItems = [
{ text: "Call" },
{ text: "Send message" },
{ text: "Edit" },
{ text: "Delete" }
];