const DemoApp = angular.module('DemoApp', ['dx']);
DemoApp.controller('DemoController', ($scope) => {
const showNotify = function (value) {
DevExpress.ui.notify(`The "${value}" button is clicked.`);
};
$scope.actionSheetVisible = false;
$scope.showTitleValue = true;
$scope.showCancelButtonValue = true;
$scope.actionSheetOptions = {
dataSource: actionSheetItems,
title: 'Choose action',
onCancelClick() {
showNotify('Cancel');
},
onItemClick(value) {
showNotify(value.itemData.text);
},
bindingOptions: {
visible: 'actionSheetVisible',
showTitle: 'showTitleValue',
showCancelButton: 'showCancelButtonValue',
},
};
$scope.buttonOptions = {
text: 'Click to show Action Sheet',
onClick() {
$scope.actionSheetVisible = true;
},
};
});
<!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/22.1.4/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/22.1.4/css/dx.light.css" />
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
<script>window.angular || document.write(decodeURIComponent('%3Cscript src="js/angular.min.js"%3E%3C/script%3E'))</script>
<script src="https://cdn3.devexpress.com/jslib/22.1.4/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" ng-app="DemoApp" ng-controller="DemoController">
<div dx-action-sheet="actionSheetOptions"></div>
<div dx-button="buttonOptions" class="button"></div>
<div class="options">
<div class="caption">Options</div>
<div class="option">
<span>Show title</span>
<div
dx-switch="{
bindingOptions: {
value: 'showTitleValue'
}
}"
></div>
</div>
<div class="option">
<span>Show cancel button</span>
<div
dx-switch="{
bindingOptions: {
value: 'showCancelButtonValue'
}
}"
></div>
</div>
</div>
<div id="message"></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;
}
const actionSheetItems = [
{ text: 'Call' },
{ text: 'Send message' },
{ text: 'Edit' },
{ text: 'Delete' },
];