完整的日历自定义按钮未定义

时间:2020-02-10 09:28:25

标签: angular fullcalendar angular8 fullcalendar-scheduler

我尝试创建带有引导主题的完整日历。实施成功。但我添加了带有图标“ fa fa-clock-o”的自定义按钮。但是该图标无法显示。显示undefined 我的选项,例如

this.options = {
      customButtons: {
        myCustomButton: {
          icon: "fa fa-clock-o",
          click: () => this.picker.open()
        }
      },
      header: {
        right: 'prev next today',
        left: 'title',
        center: 'myCustomButton dayGridMonth,timeGridWeek,timeGridDay'
      }
} 

检查该按钮是否显示为

<button type="button" class="fc-myCustomButton-button btn btn-primary" undefined="">undefined</button>

帮助我解决此问题。预先感谢

0 个答案:

没有答案