FullCalendar: How can i display an icon on each day of the month using the function DayRender?

后端 未结 1 1981
你的背包
你的背包 2021-01-15 03:43

I am building a calendar via FullCalendar.

I would like to display a small icon img for each day of the the current month. regardlees to any events. (lets say i dont

相关标签:
1条回答
  • 2021-01-15 04:01

    Do you need something like this?

    dayRender: function ( date, cell) {
    cell.prepend('<i class="fa fa-plane" aria-hidden="true"></i>');
    }
    

    https://jsfiddle.net/mnjsjs6p

    0 讨论(0)
提交回复
热议问题