Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
254 views
in Technique[技术] by (71.8m points)

javascript - Access event information inside Full Calendar List View

I am using Full Calendar v3

In the list view of Full Calendar, I want to display event address also, which I am passing in the event JSON along with other event information like start, end etc. By default list view only shows me the title of the event, how can I add an extra column to show the address of event also, and make that address clickable to open some sort of map associated with that address.

What I tried is, to add address as eventAddress data attribute in title, with eventRender function.

        eventRender: function(event, el) {
                    $el.find('.fc-title').attr( "data-eventAddress", event.address);
                },

and tried to access it in viewRender or eventAfterAllRender, but I am unable to figure out how to use it in below lines (where the address is written).

 viewRender: function(view, element) {
  element.find(".fc-list-item-title").after("<td>"+address+"</td>");
  element.find('.fc-list-heading .fc-widget-header').after('<td class="fc-widget-header" colspan="1"></td>');
}

Note: I only want this modification in ListView and other views should not get affected.

If anybody knows how to use event information in ListView mode and how to manipulate the list, please help me.

question from:https://stackoverflow.com/questions/65905795/access-event-information-inside-full-calendar-list-view

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...