离子动作表:如何修改按钮的顺序?

时间:2015-01-20 09:46:14

标签: javascript android ionic-framework

我想问一下,如何在 $ ionicActionSheet 中修改按钮顺序? :

我需要在最后一个位置移动destructiveText按钮。

http://ionicframework.com/docs/api/service/ $ ionicActionSheet /

enter image description here

在文档中没有提到它。

非常感谢您的任何建议。

1 个答案:

答案 0 :(得分:0)

我知道你一年前曾问过,但为了堆叠我会回复。

简单。只需将“取消”按钮移动到按钮并添加动作即可隐藏它。

$ionicActionSheet.show({
        buttons: [
          { text: 'Share' },
          { text: 'Move' }, 
          { text: 'Cancel' }
        ],
        destructiveText: 'Delete',
        buttonClicked: function(index) {
          return true;
        },
        destructiveButtonClicked: function() {
           return true;
        }
      });
}