Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    Ext.QuickTips.init();
    var names = [
        ['A'],
        ['B'],
        ['C'],
        ['D']
    ];
    var mySimpleStore = new Ext.data.ArrayStore({
        data   : names,
        fields : ['name']
    });
    var combo = {
        xtype        : 'combo',
        fieldLabel   : 'Letter',
        store        : mySimpleStore,
        displayField : 'name',
        typeAhead    : true,
        mode         : 'local'
    }
    new Ext.Window({
        title      : 'Title here',
        height     : 100,
        layout     : 'form',
        labelWidth : 80,
        bodyStyle  : 'padding: 5px',
        items      : combo
    }).show()
});
 
asdf