jquery – FullCalendar限制事件数量并具有更多链接

前端之家收集整理的这篇文章主要介绍了jquery – FullCalendar限制事件数量并具有更多链接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经看到有人要求在日历中添加MORE链接并限制事件数量.这样做了吗?或者有没有人实施自己的工作,他们可以共享?如果是这样,请发布您的代码.

解决方法

随着新版本v2.1.0-beta2发布17天前Arshaw做了以下事情

RESOLVED ISSUES:

  • Max events with “more…” link (304)
  • Don’t fire eventMouSEOver/eventMouSEOut while dragging/resizing (1297)

NEW OPTIONS:

  • eventLimit
  • eventLimitClick
  • eventLimitText
  • dayPopoverFormat

Source

所以,你可以做到以下几点:

$('#calendar').fullCalendar({
    lang: 'en',eventLimit: true,// If you set a number it will hide the itens
    eventLimitText: "Something" // Default is `more` (or "more" in the lang you pick in the option)
});

猜你在找的jQuery相关文章