Dijit NumberSpinner 包裹
我有两个 Dijit NumberSpinners,我用它们来选择小时和分钟,但是,当我达到最小和最大限制时,它就会停止旋转,如果有人处于最大值,有没有办法让它绕回并从零开始然后单击向上箭头,向下箭头也一样吗?谢谢。
I have two Dijit NumberSpinners which I am using to select hours and minutes, however, when I reach the min and max constraints it just stops spinning, is there a way to get it to wrap around and start at zero if someone is at the maximum and clicks the up arrow, and the same at the down arrow? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 foo 和 dijit.byId("spinner").attr("value", 中使用 dojo.connect("spinner", "onchange", foo); 和几个 if 语句0); 等
Use
dojo.connect("spinner", "onchange", foo);
and a couple of if statements inside foo anddijit.byId("spinner").attr("value", 0);
etc.