当用户单击列表框中的箭头时,我有一个 Dojo FilteringSelect 大约需要 20 秒才能从 dB 加载其值。我想在等待从 dB 返回的数据时显示进度微调器。任何想法当从数据库中检索数据时我会使用什么事件来显示我的微调器以及在完成时隐藏微调器的事件是什么?谢谢...
new FilteringSelect({
store: new dojo.data.ItemFileReadStore({ url: "some url here" }),
autocomplete: true,
maxHeight: "300",
required: false,
id: "country_select_id",
onChange: function(data) {
dojo.byId("case_info_status").innerHTML = " ";
}
}, "country_select_id");