ExtJS-UI组件-Toolbar

发布时间 2023-04-11 11:54:52作者: 重庆熊猫

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

更新记录
2023年3月6日 初始化。

说明

工具栏。

基本使用

{
    xtype: 'panel',
    closable: true,
    draggable: true,
    title: 'My Button',
    width: '100%',
    items: [
        {
            xtype: 'toolbar',
            items: [
                {
                    ui: 'action',
                    text: '重要',
                },
                {
                    ui: 'decline',
                    text: '重要',
                },
            ]
        }
    ]
},