没有人成功地将 ICEFaces 与 jQuery 结合使用?
基本上 jquery 可以与 IceFaces 一起使用。 那么只有当使用页面的部分更新时才会出现问题。 例如,您有一个使用 jquery datepicker 元素(jquery UI datepicker 插件)的面板组。
如果 panelGroup 从一开始就可见,那就没问题。 jquery 调用 jQuery(".datepicker").datepicker 查找输入,jquery 可以做到这一点。
但是,如果由于页面的部分更新(因为可见属性发生更改)而显示 panelGroup,则不会再次调用 jquery。
有人有解决这个问题的办法吗?
基本上这个想法是每次 dom 改变时 jquery 都会运行。
Basically jquery is usable with IceFaces.
Then only problem arises when partial updates of the page are used.
For example you have a panelgroup where a jquery datepicker element (jquery UI datepicker plugin) is used.
If the panelGroup is visible from the beginning it's no problem. The jquery call to jQuery(".datepicker").datepicker finds the input and jquery can do it's magic.
But if the panelGroup is shown because of a partial update of the page (because the visible propery is changed) jquery is not called again.
Does anybody has a solution to this problem?
Basically the idea would be that jquery is run each time the dom has changed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我至少找到了日期选择器的答案,只需使用 .live (jquery 1.3+),如下例所示:
在这里找到解决方案:
http://www.vancelucas.com/blog /jquery-ui-datepicker-with-ajax-and-livequery/
I have found an answer at least for the datepicker, just use the .live (jquery 1.3+) like in this example:
Solution was found here:
http://www.vancelucas.com/blog/jquery-ui-datepicker-with-ajax-and-livequery/