完整日历颜色text颜色不起作用



我正在使用服务器端处理的Full Calendar。

PHP

while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
  $event_array = array();
  $event_array['id'] = $row['id'];
  $event_array['title'] = $row['forename'] "" $row['surname'];
  $event_array['start'] = $row['start'];
  $event_array['end'] = $row['end'];
  $event_array['allDay'] = true;
  $event_array['color'] = $row['colour'];
  $event_array['textColor'] = "white";
  array_push($return_array, $event_array);
}

问题

colortextColor值对日历没有影响。我读过http://fullcalendar.io/docs/event_data/events_array/这两个选项都是有效的,但我不确定我是否在数组中正确使用了它们。

CCD_ 3是数据库中存储诸如black之类的颜色值的行。

解决方案

我使用了$event_array['className'] = $row['colour'];,其中row['colour']返回了例如black

然后我使用:

.black div {
  background-color: black;
  border-color:     black;
  color:            white;
}

在CSS中。

这样使用。

    eventRender: function(info) {
        if (moment(info.event.end) < moment()){
            info.el.style.backgroundColor  = "#e3e3e3";
            info.el.style.borderColor ="#e3e3e3";
        } else {
            info.el.style.backgroundColor  = "#6a49fc";
            info.el.style.borderColor ="#6a49fc";
            info.el.style.color = "#ffffff";
          }
      },

相关内容

  • 没有找到相关文章