我想问一下,如何在 $ ionicActionSheet 中修改按钮顺序? :
我需要在最后一个位置移动destructiveText按钮。
http://ionicframework.com/docs/api/service/ $ ionicActionSheet /
在文档中没有提到它。
非常感谢您的任何建议。
答案 0 :(得分:0)
我知道你一年前曾问过,但为了堆叠我会回复。
简单。只需将“取消”按钮移动到按钮并添加动作即可隐藏它。
$ionicActionSheet.show({
buttons: [
{ text: 'Share' },
{ text: 'Move' },
{ text: 'Cancel' }
],
destructiveText: 'Delete',
buttonClicked: function(index) {
return true;
},
destructiveButtonClicked: function() {
return true;
}
});
}