Ext JS JavaScript DHTML



Hello World Window





Ext.onReady(function() {
    new Ext.ButtonGroup({
        renderTo : Ext.getBody(),
        title    : 'Clipboard',
        columns  : 2,
        items    : [
            {
                text       : 'Paste',
                rowspan    : '3',
                width      : 50,
                scale      : 'large',
                arrowAlign : 'bottom',
                iconAlign  : 'top',
                menu       : [
                    {
                        text    : 'Plain Text',
                    },
                    {
                        text    : 'Word',
                    }
                ]
            },
            {
                text : 'icon-cut'
            },
            {
                text : 'icon-page_white_copy'
            },
            {
                text : 'icon-paintbrush'
            }
        ]
    });
});