Ext JS JavaScript DHTML

Use JsonReader to read Json data
Pageable dropdown panel


Hello World Window






Ext.onReady(function() {
    
      Ext.QuickTips.init();
    
        var ds = new Ext.data.Store({
            proxy: new Ext.data.ScriptTagProxy({
                url: 'http://extjs.com/forum/topics-remote.php'
            }),
            reader: new Ext.data.JsonReader({
                root: 'topics',
                totalProperty: 'totalCount',
                id: 'post_id'
            }, [
                {name: 'title', mapping: 'topic_title'},
                {name: 'topicId', mapping: 'topic_id'},
                {name: 'author', mapping: 'author'},
                {name: 'lastPost', mapping: 'post_time', type: 'date', dateFormat: 'timestamp'},
                {name: 'excerpt', mapping: 'post_text'}
            ])
        });
    
        
        var search = new Ext.form.ComboBox({
            store        : ds,
            fieldLabel   : 'Query string',
            displayField : 'title',
            typeAhead    : true,
            loadingText  : 'Searching...',
            pageSize     : 5,
            renderTo     : Ext.getBody(),
            width        : 200
        });
    
});
 
asdf