admin管理员组文章数量:1340750
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.
本文标签: javascriptHow to get event by event id into fullcalendarStack Overflow
版权声明:本文标题:javascript - How to get event by event id into fullcalendar? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743640639a2514649.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论