动态改变JsonStore的Url

   费了不少周折终于能动态改变JsonStore的Url了!

  

    声明JsonStore:

var store = new Ext.data.JsonStore({
					url : url,
					fields : ['label', 'value', 'selected']
			        });

 

    动态改变:

Ext.getCmp('comboBoxId').store.proxy.conn.url = 'flowNodeConfigAction.do?method=getUsers&definitionId='+definitionId+'&nodeName='+nodeName;
Ext.getCmp('comboBoxId').store.load();   

   

你可能感兴趣的:(ext)