fullcalendar

full calendar - passing event data from observable - not showing up on calendar

回眸只為那壹抹淺笑 提交于 2020-01-06 08:33:49
问题 I am using ap-fullcalendar for angular/typescript. I have a data service, where I get the events for the calendar from my database, I wrap the data in a Behaviour Subject and subscribe to it and make it into an observable from another function. I have a data service because I have multiple subscriptions to the same observable. In my component where the calendar is, I subscribe to the data. However, for some reason, the events are not getting passed properly to the calendar and won't show up.

Fullcalendar doesn't scoll to Current Date in timelineWeek view

主宰稳场 提交于 2020-01-06 07:15:20
问题 I have purchased the Fullcalendar license.But i'm facing issue as it doesn't scroll automatically to current date in timelineWeek,timelineMonth view.I have attached below the code snipet which I have tried. if $('#eventcalendarsub').length > 0 $('#eventcalendarsub,#eventcalendarsubbig').fullCalendar scrollTime: moment().subtract(3, 'h') disableDragging:true nowIndicator:true editable: false height: 390 header: left: 'today prev,next' center: 'title' right: 'timelineDay,timelineWeek

Unable to refetchevents when updating or editing events using ajax modal. Fullcalendar

≯℡__Kan透↙ 提交于 2020-01-06 07:07:51
问题 My problem is i'm unable to live edit the event after ajax success. Wnen i edit the event, the data will be updated in the database but it doesn't make any changes in the calendar display. So i have to refresh the whole page first in order to take effect the updated event. I've also tried some of the answers I've searched. Like this one: $('#calendar').fullCalendar( 'removeEventSource', events); $('#calendar').fullCalendar( 'addEventSource', events); $('#calendar').fullCalendar(

Can't access extendedProperties from Google Calendar Import

≡放荡痞女 提交于 2020-01-06 05:43:09
问题 Day three into my journey to filter my google calendar events by their source, I am now adding extended properties to my events which I will use to sort my events. Problem is, I can not access my extended properties. I followed this FullCalendar Event Object: Non-standard Fields (GCal) and added the below code to my own copy of the google calendar plugin. (The post answer says to include "extendedProperties: extendedProperties" but that would just break the script without having "item." first

Fullcalendar dayClick event not firing on certain time slots

走远了吗. 提交于 2020-01-06 04:03:33
问题 I have a couple full calendars that I use for various things and recently I discovered that my dayClick event isn't firing on some of my time slots. The calendar has 2 time slots per day, basically morning and evening, and the only ones that don't work are the Saturday Evening, and the last day of the date range's evening slot. The dayClick works just fine on every other time slot. I have searched and searched and couldn't find anything that helped. I also tried removing any of the date

Recurring events Yearly in full calendar

北城余情 提交于 2020-01-06 02:25:12
问题 I am displaying the Date of Birth of the persons in the Full calendar ex:17-July-1992. I want to have this events entry in all years like 17-July-2014, 17-July-2015, 17-July-2016,etc. Automatically. events: [{ title: 'user1', start: '2015-04-09', description: 'birthday_event', backgroundColor: Metronic.getBrandColor('blue') },{ title: 'user2', start: '2015-04-08', description: 'birthday_event', backgroundColor: Metronic.getBrandColor('blue') },{ title: 'user3', start: '2015-04-14',

Customizing the agendaWeek view of Full Calender

孤者浪人 提交于 2020-01-06 01:09:29
问题 I want to customize the agendaWeek view of full calender, by swapping the axes. Currently the seven days of the week are displayed on the top and the time slots (12 am to 11:59 pm) are displayed on the left. I want to swap the positions. Basically I want to create a school timetable by doing this. Any pointers on how to do this? 回答1: You can't customize the agendaWeek view of Full Calender to swap the axes. It only displays one or more columns with time slots running vertically, see source.

Customizing the agendaWeek view of Full Calender

大城市里の小女人 提交于 2020-01-06 01:07:12
问题 I want to customize the agendaWeek view of full calender, by swapping the axes. Currently the seven days of the week are displayed on the top and the time slots (12 am to 11:59 pm) are displayed on the left. I want to swap the positions. Basically I want to create a school timetable by doing this. Any pointers on how to do this? 回答1: You can't customize the agendaWeek view of Full Calender to swap the axes. It only displays one or more columns with time slots running vertically, see source.

integration google calendar with fullcalendar

六月ゝ 毕业季﹏ 提交于 2020-01-05 08:10:36
问题 i am working on a project symfony3 to integrate googleCalendar with fullcaldendar. I'd like to use the googlecalendar to feed the fullcalendar to show all the events i had in googlecalendar,and then each time when i change a event in fullcalendar, it will be changed also in googlecalendar. So the step is to get the google events from googleCalendar which i have done already and i have tried to make it in format of json: $myjsonfile: [{ "title": "Rdv Ecole", "start": "2017-11-13T10:00:00+01:00

How to hover each cell for each day with react FullCalendar?

自闭症网瘾萝莉.ら 提交于 2020-01-05 07:15:59
问题 I have a FullCalendar and I want when, I hover the cell of the days, the background will be blue also, the time of this cell will be appeared. I try this : .fc-widget-content td:hover { background-color: blue; } But, I get : But, I want, to hover each cell for each day independently like this: How can I fix it ? 来源: https://stackoverflow.com/questions/59300806/how-to-hover-each-cell-for-each-day-with-react-fullcalendar