如何通过向网格提供不同的URL来重新加载网格

时间:2015-08-27 11:34:32

标签: javascript jquery extjs

我想在检查不同的单选按钮时重新加载我的网格,但是我希望提供给网格的新网址在网格内提供不同的不同列。

这是我的单选按钮,我想给我的网格提供不同的网址。

{
    boxLabel: ' 1', name: 'rb-horiz-3', inputValue: 1,
    listeners: {
    check: function(){ 
        //what i write here to 
        // reload grid with different url ....
    }}
}

这是我的网格..

{
    xtype:'grid',
    store:new Ext.data.JsonStore({
        id:'store_id',
        root:'result',
        totalProperty:'total',
        fields:[
            {name:'rank'},
            {name:'pg'},
        ],
        baseParams:{start:0,limit:20},
        url:'pgrouting!getGridData.action',//this i want to change on checking of radio button...
            autoLoad:true,
            method:'POST'}

1 个答案:

答案 0 :(得分:1)

正如@MMT在评论中所说,将绑定的代理网址设置为新网址,然后执行加载商店。

check: function(){ 
    var url = http://example.com/data; // set the specific url
    // what you need here is a reference to your grid or store
    var store = grid.getStore();       // get the store from the grid
    var proxy = store.getProxy();      // get the proxy from the store
    proxy.setUrl(url);                 // change the url of the proxy
    store.load();                      // load the new data
}}

检查侦听器中您需要的是对网格或网格存储的引用。