Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am try to research Extjs- grid. I created a button to display grid when click it. My code like below:

function onDisplay() {
    Ext.onReady(function () {
        var proxy = new Ext.data.HttpProxy({
            url: 'server.jsp'
        });
        var reader = new Ext.data.JsonReader({}, [{
            name: 'bookId',
            mapping: 'bookId'
        }, {
            name: 'bookName'
        }])

        var gridStore = new Ext.data.Store({
            proxy: proxy,
            reader: reader
        });

        gridStore.load();

        cols = [{
            header: "bookId",
            width: 60,
            dataIndex: 'bookId',
            sortable: true
        }, {
            header: "bookName",
            width: 60,
            dataIndex: 'bookName',
            sortable: true
        }];

        var firstGrid = new Ext.grid.GridPanel({
            store: gridStore,
            columns: cols,
            renderTo: 'example-grid',

            width: 540,
            height: 200
        });

    });
}

But when i click button N times -> it is displayed N grids. I only want display one grid and after click button it will get data from server again.

Please help me.

Thank you

share|improve this question
Why do you have your Ext.onReady call wrapped within a function? – NT3RP Feb 22 '11 at 4:16

1 Answer

up vote 1 down vote accepted

You might want to look at some of the ExtJS Grid examples. They have lots of information about rendering grids from a store, and creating toolbars (which may include refresh buttons, for example). After cleaning up your example code a bit, I've come up with this:

Ext.onReady(function(){
    var proxy=new Ext.data.HttpProxy(    {url:'server.jsp'});
    var reader=new Ext.data.JsonReader({},[
        {name: 'bookId', mapping: 'bookId'},
        {name: 'bookName'}         
    ])

    var gridStore=new Ext.data.Store({
        proxy:proxy,
        reader:reader
        autoLoad:true
    });


    cols= [
        {header: "bookId", width: 60, dataIndex: 'bookId', sortable: true},
        {header: "bookName", width: 60, dataIndex: 'bookName', sortable: true}
    ];

    var firstGrid = new Ext.grid.GridPanel({
        store        : gridStore,
        columns      : cols,
        renderTo     :'example-grid',

        width       :540,
        height      :200
    });


    //this code should ensure that only the grid updates,
    //rather than rendering a whole new grid each time
    var button = Ext.Button({
        renderTo: "ButtonContainerId",
        listeners: {
            'click': function() {
                gridStore.load()
            }
        }
    })
});
share|improve this answer
why not just add autoLoad: true to your gridStore ? – Jaitsu Feb 22 '11 at 14:17
autoLoad: true, in my understanding, only avoids the initial call to gridStore.load. I've updated my answer to reflect this. AFAIK, to refresh the data, an explicit call to load is needed. – NT3RP Feb 22 '11 at 17:04
yeah sorry, that's what I meant, there was your definition of gridStore and then a call to gridStore.load(); after it which was a bit pointless, obviously the gridStore.load(); in your click event is still required – Jaitsu Feb 22 '11 at 17:42
Thank you. I work well ^^ – haicnpmk44 Feb 23 '11 at 2:06
@haicnpmk44 If the answer worked for you, please mark it as accepted. – NT3RP Feb 23 '11 at 14:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.