javascript - How to get event by event id into fullcalendar? - Stack Overflow

How is possible get and event by the event id of fullcalendar bootstrap?I have the event id and I want

How is possible get and event by the event id of fullcalendar bootstrap?

I have the event id and I want get the event from this. I'm trying this:

var evento = $("#calendar").fullCalendar( 'clientEvents')[response.idEvent];

response.idEvent is the id event, this is correct (for example '32' from my mysql database), I know this because I print this and is correct, but I don't know how to get the event from this...

How can get this?

Thanks!

How is possible get and event by the event id of fullcalendar bootstrap?

I have the event id and I want get the event from this. I'm trying this:

var evento = $("#calendar").fullCalendar( 'clientEvents')[response.idEvent];

response.idEvent is the id event, this is correct (for example '32' from my mysql database), I know this because I print this and is correct, but I don't know how to get the event from this...

How can get this?

Thanks!

Share Improve this question asked Sep 22, 2015 at 14:16 user3745888user3745888 6,35315 gold badges49 silver badges101 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

According to the FullCalendar's documentation, you can achieve what you want by doing:

var evento = $("#calendar").fullCalendar('clientEvents', response.idEvent);

The brackets in the documentation mean that the parameter is optional.

If you want just get all properties of event you can add the [0] and choose properties through dot. For example you have event id as "_fc1" (got it from http://fullcalendar.io/js/fullcalendar-2.4.0/demos/agenda-views.html):

var eventoObj = $("#calendar").fullCalendar( 'clientEvents', "_fc1")[0];
var evento_allDay = eventoObj._allDay;
var evento_start = eventoObj._start;
var evento_end = eventoObj._end;

etc.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743640640a4482897.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信