fullcalendar

FullCalendar-Scheduler Google Calendars ResourceIDs Query

那年仲夏 提交于 2019-12-11 08:33:51
问题 Reference: FullCalendar 3.9.0, FullCalendar-Scheduler 1.9.4 Can anyone confirm whether or not it is possible to group Google calendar events by resource? Adding a resourceId parameter to a calendar source as follows: var myCalSrc = { id: 1, googleCalendarId: '<myCalSrcURL>', color: '<myCalSrcColor>', className: '<myCalSrc-events>' }; results in a blank display. The following note in the FullCalendar-Scheduler gcal.html file located in the demos directory states: /* NOTE: unfortunately,

Change the days background color in FullCalendar

风流意气都作罢 提交于 2019-12-11 08:28:49
问题 I'm using FullCalendar in my asp.net application. There are four asp:Button s in my application as below. Weekends Weekdays Month Year When user click on Weekends button, i need to change the background color of Weekend days of current month. When user click on Weekdays button, i need to change the background color of Weekdays of current month. When user click on Month button, i need to change the background color of all days of current month. When user click on Year button, i need to change

Using $popover service in Angular with Fullcalendar

女生的网名这么多〃 提交于 2019-12-11 08:24:04
问题 I have a calendar setup in Angular using FullCalendar. I am now trying to get a popover to show up using javascript only and without any DOM manipulation. I am trying to use the $popover service provided by Angularstrap. In the options of the calendar I do the following: eventMouseover: $scope.PopOnEventHover And the PopOnEventHover is what I am trying to use make the popover appear: $scope.alertOnEventHover = function(event, jsEvent, view, $popover, element){ var myPopover = $popover(element

Display image as background in fullcalendar

放肆的年华 提交于 2019-12-11 07:56:20
问题 I have been looking for some code to use an image as a background for the events in fullcalendar (fullcalendar jQuery), but all I was able to find was code to add icons to said events. I am looking to do something like this: UPDATE: 2016-09-23 8:15 p.m. EST: I have been trying with: eventRender: function(event, element) { $(element).find(".fc-day").css("background","url(https://www.mozilla.org/media/img/firefox/firefox-256.e2c1fc556816.jpg) no-repeat"); $(element).find(".fc-day").css(

javascript fullcalendar datetime is messed up

假装没事ソ 提交于 2019-12-11 07:43:36
问题 I am following this tutorial on making a calendar scheduler in asp.net MVC5: http://www.dotnetawesome.com/2017/07/curd-operation-on-fullcalendar-in-aspnet-mvc.html I am having trouble understanding how the datetime is passed and why it is showing the min value in the database (as if the value were null because left empty): specifically it is set to 1/1/0001 12:00:00 AM in the database. I have looked into various answers on Stack Overflow but do not know how or what I need to change to make

Fullcalendar is not displaying events

淺唱寂寞╮ 提交于 2019-12-11 07:14:51
问题 I have a problem with FullCalendar where it doesn't display my events. I have an idea that the event data might be in the wrong format, but I can't see what should be. The code below is a simplified version of my code: jQuery('#cal').fullCalendar({ defaultView: 'agendaDay', axisFormat: 'H', //,'h(:mm)tt', timeFormat: { agenda: 'H' //h:mm{ - h:mm}' }, firstHour: 18, eventSources: [{"id":64,"title":"TestUser","start":"2011-03-08T02:00:00.0000000","end":"2011-03-08T04:00:00.0000000","allDay"

drag-drop group of events connected together in FullCalendar

∥☆過路亽.° 提交于 2019-12-11 07:06:38
问题 i've a sequence of events connected together in FullCalendar + Scheduler, with this code: resourceGroupField: 'building', resources: [ { id: 'a', building: 'Impianto 1', title: 'Cliente Pippo' }, { id: 'b', building: 'Impianto 2', title: 'Cliente Pluto' }, { id: 'c', building: 'Impianto 3', title: 'Cliente Pallino' } ], events: [ { id: '1', resourceId: 'a', start: '2017-09-07T02:00:00', end: '2017-09-07T04:00:00', title: 'Carico su camion', id_evento_collegato: [1,2,3,4,5,6,7], editable:

Update FullCalendar with Firebase on new event

喜夏-厌秋 提交于 2019-12-11 07:04:30
问题 I'm trying to build a schedule app with full calendar and Firebase. But I can not get the the calendar to update on changes (events added/deleted/moved). The changes are reflected instantly in Firebase. I assign data AFTER calendar init 'ing (when loaded from Firebase). I tried assigning data array as addEventSource and events property. Seems like eventSource works better than assigning as events property. But it is not updating when data changes. Only thing that works is manually render or

How to HTTP Post / HTTP Get and navigate to another page using JQuery

倾然丶 夕夏残阳落幕 提交于 2019-12-11 06:57:11
问题 Hi Friends I am working with a Full Calender application, in that,while i click in a event it must be redirect to another page and also post the data like event id,event start,event end,user id so on,how can i do that in J Query and Full Calender 回答1: I think you can do something like this : $('#calendar').fullCalendar({ eventClick: function(calEvent, jsEvent, view) { window.location = 'page.php?' + 'id=' + calEvent.id + '&start=' + calEvent.start + '&end=' + calEvent.end + '&user_id=' +

Fullcalendar jquery plugin height issue

寵の児 提交于 2019-12-11 06:55:03
问题 I integrated fullcalendar within a webpage but for some reason, the height I applied through the 'height' property available within the plugin only works for MonthView. The code: var calendarOptions = { theme: true, defaultView: 'agendaWeek', allDaySlot: false, allDayText: 'all-day', height: ($(window).height()) - ($("div.calendarTitle").offset().top), firstHour: 7, firstDay: 1, slotMinutes: 30, defaultEventMinutes: 120, axisFormat: 'H:mm', ..... Basically, the ($(window).height()) - ($("div