I have a dijit.form.FilteringSelect component and I want to change the options dynamically. But I get the store from the dijit.form.FilteringSelectwith its stor
dijit.form.FilteringSelect
the properties 'urlPreventCache:true, clearOnClose:true' will force the store to be reloaded
and then, on event/callback/handler where you need/want to reset the values just do this
function func-name() { clientStore.url = "../json/GetClients?param="; clientStore.close(); }