如何在angular2应用程序中实现的完整日历中添加自定义按钮

时间:2016-11-02 05:31:04

标签: angular typescript angular-ui-router

我找到了在完整日历中添加自定义按钮的链接: https://fullcalendar.io/docs/display/customButtons/

但是我在Angular2应用程序中实现了完整的日历。所以需要逻辑在angular2 app中使用类型脚本添加自定义按钮。

1 个答案:

答案 0 :(得分:0)

将自定义按钮添加到.ts文件中的选项

options = {
    customButtons: {
      myCustomButton: {
        text: 'custom!',
      }
    }
  };

html的

<p-schedule #cal [events]="events"
                 [header]="header"
                 [options]="options">
</p-schedule>