- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 FilteringSelect 和 dojox.data.QueryReadStore 作为存储。当我在选择过滤下拉时重置它击中服务器。 dijit.byId("enquirerOrInstitution").reset();
。这背后的原因是什么,我们如何才能阻止它?我必须使用 FilteringSelect 而不是 ComboBox。代码如下:
<td>
<div id="accountList" dojoType="dojox.data.QueryReadStore" jsId="accountListStore"
url="<%=contextPath %>/<%=servlet%>?cmd_search_gcs_account_list=1"></div>
<select id="gcsAccountNumber" name="gcsAccountNumber" dojoType="dijit.form.FilteringSelect"
style="width: 250px" searchAttr="accountNumber" autoComplete="false" pageSize="10" store="accountListStore">
</select>
</td>
并在 JS dijit.byId("gcsAccountNumber").reset(); 的某处重置。
。
在这个 Action 中,我看到了对服务器的调用。
最佳答案
这将是一个简单的出路:
dijit.byId('gcsAccountNumber').removeOption(
dijit.byId('gcsAccountNumber').getOptions()
);
测试它是否向您的服务器发送请求。
如果是这样,删除 DOM 元素的内部子元素的例程会给出一个公平的结果。不要担心关系卡在 dijit 上,因为它会在您更新其内容后重置。真正的内存保存在您的商店中(也尝试通过 .reset()
调用重置)
while (node.firstChild) node.removeChild(node.firstChild);
关于javascript - 重置 dijit.form.FilteringSelect 在 Dojo 中点击 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19399730/
我需要你的帮助!我在它们之间放置了随机数量的 div。 Item description Item description Item description Item
我有两个 NSDates,时间格式为“h:mm a”(即 6:00 AM 和 8:00 PM)。 我试图找出这两个时间之间的中点是什么时间。 对于上面的示例,早上 6:00 和晚上 8:00 之间的中
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 8 年前。 Improve th
我正在寻找一种有效的算法来检查一个点是否在 3D 中的另一个点附近。 sqrt((x2-x1)^2 + (y2-y1)^2 + (z2-z1)^2) < radius 这似乎并不太快,实际上我不需要这
我可以让 pandas cut/qcut 函数返回 bin 端点或 bin 中点而不是一串 bin 标签吗? 目前 pd.cut(pd.Series(np.arange(11)), bins = 5)
我是一名优秀的程序员,十分优秀!