How to show event details on click of day in full calendar

前端 未结 3 2066
一生所求
一生所求 2020-12-09 22:38

Hi everyone I have events array, on click of day I want to show event details in another panel. I have array with array within array format, I am not getting how to render t

3条回答
  •  旧巷少年郎
    2020-12-09 23:20

    $(document).ready(function(){
        $('.fc-button-group').click(function() {
            //write code here
        });
    });
    

提交回复
热议问题