ExtJS-UI组件-ActionSheet

发布时间 2023-04-11 11:59:53作者: 重庆熊猫

更新记录
2023年3月8日 发布。

ExtJS教程汇总:https://www.cnblogs.com/cqpanda/p/16328016.html
转载请注明出处:https://www.cnblogs.com/cqpanda/p/17192499.html

作用

Ext.ActionSheet are used to display a list of Ext.Button in a popup dialog.

实例

基础使用

var actionSheet = Ext.create('Ext.ActionSheet', {
    items: [
        {
            text: 'Delete draft',
            ui  : 'decline'
        },
        {
            text: 'Save draft'
        },
        {
            text: 'Cancel',
            ui  : 'confirm'
        }
    ]
});

Ext.Viewport.add(actionSheet);
actionSheet.show();