fullCalendar - 活动标题和详细信息
我正在使用相当完整的Calendar jQuery 插件。
我希望能够为每个活动提供标题和详细信息,如下面的屏幕截图所示:
这里的详细信息是参与者每次会议。 (溢出隐藏在细节上)
I'm using the pretty fullCalendar jQuery plugin.
I'd like to be able to have a title AND a detail on each event as in the screenshot below:
Here the details are the participants for each session.
(overflow hidden on the detail)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
看看这个(尤里卡的答案)
See This (Eureka's Answer)
基于 fullcalendar 文档
V5
如果要设置标题,请使用
eventDidMount
而不是eventRender
Based on fullcalendar documentation
V5
If you want to set the title use
eventDidMount
instead ofeventRender
目前 (V6) 的解决方案是使用
eventDidMount
回调并访问extendedProps
数据:设置元素的样式以根据需要显示。
Currently (V6) a solution is to use the
eventDidMount
callback and access theextendedProps
data:Style your element to display as needed.
对于在 Angular 8 中遇到此问题的任何人:
For anybody having this issue in Angular 8: