この Dojo ItemFileReadStore を強制的に更新できるようにしたいと考えています。私がそれを行う方法はありますか?
existingCasesStore = new dojo.data.ItemFileReadStore({ url: "some url here" });
existingCasesStore.fetch();
// Creates the Choose Existing list box
new dojo.form.FilteringSelect({
store: existingCasesStore,
autocomplete: true,
maxHeight: "300",
required: false,
id: "choose_existing_select_id",
onChange: function(selected) {
utils.setStatusMessage("case_info_status", "", " ");
}
}, "choose_existing_select_id");