Primefaces 时间表:如何选择日期范围?

发布于 2024-12-14 09:35:25 字数 324 浏览 2 评论 0原文

我正在使用 primefaces 计划组件。我想选择一个天数范围来创建一个 n 天的事件,只需在开始日期按下鼠标按钮并在结束日期释放鼠标即可。完整日历允许:

http://arshaw.com/js/fullcalendar- 1.5.2/demos/selectable.html

如何对 primefaces 组件执行相同操作?我猜它是基于 jquery fullCalendar,但在我看来,你只能单击一个日期。

I'm using primefaces schedule component. I would like to select a range of days to create a n-days event just pressing the mouse button on the starting date and releasing it on the end date. Full calandar allows that:

http://arshaw.com/js/fullcalendar-1.5.2/demos/selectable.html

How can I do the same with the primefaces component? I guessed it was based on jquery fullCalendar, but it seems to me you can click only on a single date.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

弥繁 2024-12-21 09:35:25

你是对的,Primefaces 不支持通过简单地拖动鼠标来创建 n 天的事件,但你仍然可以实现 fullCalendar 小部件而不是 Primefaces 时间表。
您所要做的就是使用 Primefaces 提供的 jquery:

<h:outputStylesheet library="primefaces" name="jquery/jquery.js" />

否则

<h:outputScript library="primefaces" name="jquery/jquery.js" target="head" />

您可能会产生冲突。

You're right, Primefaces doesn't support the creation of a n-days event by simply dragging the mouse, but you still could implement the fullCalendar widget instead of Primefaces schedule.
All you have to do is to use the jquery provided by Primefaces:

<h:outputStylesheet library="primefaces" name="jquery/jquery.js" />

or

<h:outputScript library="primefaces" name="jquery/jquery.js" target="head" />

Otherwise you could create conflicts.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文