I'm using the pretty fullCalendar jQuery plugin.
I'd like to be able to have a title AND a detail on each event as in the screenshot below:
Here the details are the participants for each session. (overflow hidden on the detail)
change(function(){ filter_id = $(this). val(); if (filter_id != 'all') { var events = $('#mycalendar'). fullCalendar( 'clientEvents', function(event) { if((filter_id == 'all') ) { return true; }else{ //what I need to write here to dynamic filter events on calendar? }); } });
FullCalendar generates real React virtual DOM nodes so you can leverage Fiber, React's highly optimized rendering engine.
See This (Eureka's Answer)
eventRender: function(event, element)
{
element.find('.fc-event-title').append("<br/>" + event.description);
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With