FullCalendar Custom/Override Header title

后端 未结 2 916
傲寒
傲寒 2020-12-21 16:40

I want change the titleFormat of my calendar.

At present, the title is in an h2 tag and we cannot personalize it by adding html code to the titleFormat option. For

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-21 16:46

    A simple way is to overwrite the view.title within the viewRender event:

    ...
    ,
    header: {
      center: 'title',
    },
    viewRender: function(view, element) {
      view.title = 'Your Custom Title';
    },
    ...
    

提交回复
热议问题