fullcalendar

FullCalendar doesn't display certain date

女生的网名这么多〃 提交于 2019-12-12 00:19:18
问题 I'm using fullCalendar and I've set the structure of visualization like this: $('#calendar').fullCalendar({ 'defaultView': 'agendaWeek', 'height': BackendCalendar.getCalendarHeight(), 'editable': true, 'firstDay': 1, //Lunedì 'slotMinutes': 30, 'snapMinutes': 15, 'axisFormat': 'HH:mm', 'timeFormat': 'HH:mm{ - HH:mm}', 'allDayText': EALang['all_day'], 'columnFormat': { 'month': 'ddd', 'week': 'ddd d/M', 'day': 'dddd d/M' }, 'titleFormat': { 'month': 'MMMM yyyy', 'week': "MMMM d[ yyyy]{ '—'[

Changes in eventSources model do not reflect in fullCalendar

亡梦爱人 提交于 2019-12-11 23:47:53
问题 Im using angularjs, restangular & angular-ui/ui-calendar. I want to load events from rest API when view is changed (next/prev month, etc.) I'm trying to do that from viewRender callback. Inside callback, data is retrieved from API and applied to eventSources model. However changes in model do not get applied in calendar. Someone please point out what is wrong or if I'm missing anything. I've tried fullCalendar('render') , rerenderEvents , refetchEvents etc. The calendar keeps showing initial

Events adding and loading problem in jQuery Full calendar using Sql Server and PHP

こ雲淡風輕ζ 提交于 2019-12-11 19:45:34
问题 I used jQuery Full Calendar in my project.My events are stored in MS SQL Server table(events), I got the data in "json" format, but it is not render into Full calendar and events are not added into table.... Please can any body help me.... CREATE TABLE events ( id NUMERIC IDENTITY(1,1) NOT NULL, title varchar(255) NOT NULL, start_event datetime NOT NULL, end_event datetime NOT NULL, CONSTRAINT [PK_events] PRIMARY KEY CLUSTERED ( id ASC ) ) INSERT INTO events(title,start_event,end_event)

FullCalendar dividing lines between days

橙三吉。 提交于 2019-12-11 19:14:32
问题 I am using the jquery fullcalendar and it's working great however in the agendaweek view there are no dividing lines between the days. I have reviewed the fullcalendar site and even tried to find what css handled displaying the dividing lines with no luck. How do I get the day dividing lines to show? Thanks 回答1: to add dividing lines between days .fc-border-separate td { border-width: 1px 0 0 1px; border-color: red; } adjust pixels and color 回答2: I had the exact same issue using styling from

Show slots based on data in Full Calendar day view

点点圈 提交于 2019-12-11 19:09:31
问题 I need help on showing time slots in day view in full calendar. I have this data: [ { "slot": "10:00-11:00", "available": true, "startTime": "10:00 AM", "endTime": "11:00 AM" }, { "slot": "11:00-12:00", "available": true, "startTime": "11:00 AM", "endTime": "12:00 PM" }, { "slot": "12:00-13:00", "available": true, "startTime": "12:00 PM", "endTime": "1:00 PM" }, { "slot": "13:00-14:00", "available": false, "startTime": "1:00 PM", "endTime": "2:00 PM" }, { "slot": "14:00-15:00", "available":

formatting events date and time on fullcalendar

孤人 提交于 2019-12-11 18:32:04
问题 Supposing am getting the dates for an event from a database in what format should my event date be am thinking. start: 2012-03-29, 08:00am, end: 2012-03-30, 08:00am, allday: false, it does not recognize the end date and the time for the event Am I doing the wrong thing? 回答1: I use the following format and it works for me: mm/dd/yyyy hh:mm tt e.g. 03/15/2012 05:10 AM Also make sure that in your JSon you have allDay as a boolean and not as a string "allDay"= "false", // this is wrong. In this

Copying a months FullCalendar events to next month

拈花ヽ惹草 提交于 2019-12-11 18:25:11
问题 I'm using FullCalendar and it works perfect(ish) :) Now my users are demanding a simple way to copy a full months of scheduled shifts to the next month - or any month. I already have a "Copy week" function in place and it works fine. But I simply can't figure out the correct way to copy an entire months shifts. I was thinking to copy "day N Month A" to "day N Month B" but this leads to failure - as the 1. day in the month is constantly moving. Any ideas how to accomplish this? Edit: The task

fullcalendar removeEventSource not working when event source is object property

旧城冷巷雨未停 提交于 2019-12-11 18:07:15
问题 http://jsfiddle.net/minlare/4G75c/ If you take a look at the above fiddle I add/remove multiple event sources using buttons. removeEventSource method is not working and repeated clicks of the toggle buttons cause duplicate event sources to be added. I have read the docs which explains having the same object reference. Can anyone shed any light on this? var target = $(e.target); if(this.types[target.data('type')].active){ $('#calendar').fullCalendar('removeEventSource', this.types[target.data(

Fullcalendar mousewheel event prev next

一笑奈何 提交于 2019-12-11 18:02:00
问题 i'm trying to do a simple think in Fullcalendar ( 1.6.2 ) and is to simulate the prev and next button throught the mouse wheel up and down, similar to google calendar. Here is the code i'm using, this code is from another question in here i think, but i can´t remember wich one :S calendar.bind('mousewheel', function(event, delta) { var view = calendar.fullCalendar('getView'); //alert(view.name); //Can retrieve the view name successfully //alert(delta); // Undefined //alert(event); // [Object

Set a fullcalendar with meteor.js

旧城冷巷雨未停 提交于 2019-12-11 17:24:51
问题 i am new to meteor, and i am trying to set a full calendar. i am using windows, and i did the meteor add fullcalendar:fullcalendar but I can't render the fullcalendar... i have read so many tutorials so far but still nothing. here is a sample of the code that im using. I dont know if there is a way to check if the fullcalendar package did install in my app... or if I have to import it... main.js import { Template } from 'meteor/templating'; import { Notes } from '../lib/collections.js'; /