Ext JS JavaScript DHTML



Hello World Window





Ext.onReady(function() {
    var tbar = {
        items : [
            {
                text        : 'Add',
            },
            '-',
            {
                text        : 'Update',
            },
            '-',
            {
                text        : 'Delete',
            },
           '->',
           'Select one of these: ',
            {
                xtype     : 'combo',
                width     : 100,
                store     : [
                    'A',
                    'B',
                    'C'
                ]
            }
        ]
    };
    
    new Ext.Window({
        width  : 500,
        height : 200,
        tbar   : tbar
    }).show();
});