Ext JS JavaScript DHTML



Hello World Window





Ext.onReady(function() {
    var btns = [
        {
            text        : 'Add',
            iconCls     : 'icon-add'
        },
        '-',
        {
            text        : 'Update',
            iconCls     : 'icon-update'
        },
        '-',
        {
            text        : 'Delete',
            iconCls     : 'icon-delete'
        }
    ];
    var tbar = {
        xtype        : 'toolbar',
        layout       : 'hbox',
        items        : btns,        
        height       : 200,
        layoutConfig : {
            align : 'stretch'
        },
        defaults : {
            flex : 1  
        }
    };
    new Ext.Window({
        width  : 500,
        height : 200,
        tbar   : tbar
    }).show();
});