Ext JS JavaScript DHTML



Hello World Window





Ext.onReady(function() {
    new Ext.ButtonGroup({
        renderTo     : Ext.getBody(),   
    
        title        : 'Edit',
        //layout       : 'hbox',
        layoutConfig : {
          //  align : 'stretch'
        },
        defaults    : {
            flex : 1
        },
        items       : [
            {
                text       : 'Paste as',
                iconCls    : 'icon-clipboard',
                //arrowAlign : 'bottom',
                menu       : [
                    {
                        text    : 'Plain Text',
                    },
                    {
                        text    : 'Word',
                    }
                ]
            },
            {
                text    : 'Copy',
            },
            {
                text    : 'Cut',
            },
            {
                text    : 'Clear',
            }
        ]
    });
});