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 badges2 Answers
Reset to default 7According 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条)