如何在完整的日历js中将事件渲染到整个单元格?

问题描述 投票:1回答:1

是否有某种财产让我这样做?我试过eventRender但不知道怎么做。这是我的日历:enter image description here

我希望这段时间能像enter image description here那样覆盖整天的细胞

javascript fullcalendar
1个回答
2
投票

试试这个。你可能需要一个background events

events: [
  {
    "title":"Lorem Ipsum",
    "start":"2019-04-16",
    "end":"2019-04-16",
    "rendering": "background",
    "color":"red"
  },
]

或者如果你想拥有两种渲染类型的事件,你可以这样做。

如果我理解你的问题,你可以

 events:[
           {
              "title": "event 5",
              "start": "2019-04-24T10:00:00",
              "end": "2019-04-24T13:00:00",
            },
            {
              "title": "event 2",
              "start": "2019-04-24T14:00:00",
              "end": "2019-04-24T15:00:00",
              "backgroundColor": "red"
            },
            {
              "start": "2019-04-24T12:00:00",
              "end": "2019-04-24T16:00:00",
              "rendering": "background"
            },
          ],
© www.soinside.com 2019 - 2024. All rights reserved.