Fullcalendar is a jQuery plugin developed by Adam Shaw that loads events by AJAX (as well as other methods) and presents them in a calendar/agenda display.
0
votes
0answers
26 views
AngularJS and Fullcalendar: eventClick works only first time
I'm using the Angular module based on fullcalendar: https://github.com/angular-ui/ui-calendar along with the dialog module from ng-bootstrap: http://angular-ui.github.io/bootstrap/#/dialog. I ...
0
votes
0answers
19 views
Backbone / Marionette with FullCalendar Not Rendering
I'm attempting to use FullCalendar with a Backbone.Marionette.ItemView and it initially only renders the calendar control buttons. However, after resizing the window, clicking any calendar button or ...
1
vote
1answer
22 views
FullCalendar Control MVC jQuery - Multiple Calendars are being created
I am looking to implement the FullCalendar control provided by Adam Shaw and have been able to set my defaults and load it with events using JSONResult in my MVC control.
I have a DropDownList that ...
0
votes
1answer
7 views
FullCalendar & Symfony 1.3 insert data in DB without form
i'm trying to use fullCalendar's plugin in my symfony projet, but i have some trouble to insert data into database.
i have a page calendar/index, where we can see the calendar, and the javascript to ...
0
votes
1answer
32 views
Show only weeks in Full Calendar jQuery Plugin
I'm using the FullCalendar Plugin available at http://arshaw.com/fullcalendar/
I want a view which shows only weeks for the whole year. The headings must be W1, W2, W3... until W52. There is no need ...
1
vote
1answer
43 views
Javascript .replace being re-written on page load
So I'm not really sure how to explain this, so I will just provide an example. I'm using fullCalendar jquery calendar to populate events in a calendar on my page. fullCalendar has a method called ...
0
votes
1answer
37 views
change defaultview in fullcalendar
I use fullcalendar ,I currently have the default view to be 'Week'. I change the view to the "Day" but when i click to the refresh buton
the "week" view will show instead of the "Day" everytime.
How ...
0
votes
1answer
29 views
working with Yii, is there any way to add AS to query via CDbCriteria
so there's the deal:
I've got a table set up for basic event management. This is done with all of the supporting code in place. I've decided to use the jquery calendar, Full Calendar for display via ...
1
vote
0answers
32 views
Show “add activity” on fullcalendar day hover
I'm trying to show "add activity" when I hover over a day in fullcalendar (month view). I have used the following code - and it works in all but IE8. Any ideas how to make this work in IE8? It just ...
0
votes
2answers
55 views
full calender not working in firefox
hi i'm working on full calender I have a problem displaying the values in Mozilla Firefox. where as in Chrome the code works perfectly.
i'm fetching the value from database and displaying it, but as ...
0
votes
0answers
18 views
Events on FullCalendar using CodeIgniter
I'm trying to use fullcalendar with code igniter and the events are not displayed.
For now i have some simple code lines to test it but i cannot get them work.
Here's what i have:
In the developers ...
0
votes
2answers
45 views
How to get event resourceId when adding a new one
I'm trying to add a new event manually (selecting a time range) to a specific resource, so I need the resourceId after doing it to save the event on DB. The method select: function (start,end,allDay) ...
0
votes
0answers
30 views
Full calender delete an event
I am looking to delete an event from my full calender via a event that confirmation dialog box when clicked. I am also looking to use a form(with text-boxes) to save values into my calender. I have ...
2
votes
0answers
28 views
Issue with a dialog and draggable Fullcalendar
I'm using a dialog box from jQuery UI and FullCalendar
My dialog opens correctly, but when its over my calendar it is like the dialog gets integrated in the calender as a draggable object. I have a ...
0
votes
0answers
61 views
Dialog doesn't “pop up” but redirects the entire page
I am currently working on a calendar using the Fullcalendar jquery plugin.
I need a dialog to be opened when you click an event.
When I click an event on the calender for a split second I get the gray ...
0
votes
3answers
44 views
Full calendar fit to container and hide scroll
I cannot figure out how to scale fullcalendar to fit to it's parent container. I want to display week view on a single page for users without need to scroll (So they quickly review items for a week). ...
0
votes
1answer
32 views
Using FullCalendar methods with AngularUI wrapper
I'm trying to integrate AngularUI's calendar wrapper into my application, and the calendar initialization works fine. However, I don't see how I can call calendar methods from here. Here's my ...
0
votes
1answer
23 views
Ajax $.post method for load project tasks in fullcalendar
Good morning,
I'd like to add a fullcalendar to my mvc project.
The problem arrives when I try to encode the json with the project tasks. The code that I use is the following:
proyectosModel.php
...
-1
votes
0answers
47 views
unable to change fullcalander event color ('fc-event-inner' CSS) (used under JIRA)
i went through other posts related to fullcaldner event color but it couldn't work for me.
I tried below
calendar.fullCalendar('renderEvent',{
id: ...
0
votes
1answer
37 views
Can Full Calender create a muli-day event as separate events(peices of the event) per day
I am new to full calender, so I'm really unsure of where to break in to the code for my issue.
First, Full Calender is great, wow what a time saver, great piece of work!
Second, I am using a ...
0
votes
2answers
49 views
How to pass dynamic parameter for events object of fullcalendar using json?
I am using fullcalendar with json feed, the code is as follows
$('#calendar').fullCalendar({
theme: true,
header: {
left: 'prev,next today',
center: 'title',
...
0
votes
1answer
29 views
Event Object is holding previous event properties in Full Calendar
I've got a problem with FullCalendar and I was looking for solution without any success.
I use eventClick to open overlay form with data of current event. Everything works great until I change my mind ...
0
votes
0answers
39 views
to display a dialog box on click of a date in calendar change the color of the grid cell
I am creating an app where i need to display a calendar in full screen and ask the user to select a date..after the selection of date a dialog box will appear with two buttons in it BUTTON 1 and ...
0
votes
1answer
28 views
Fullcalendar - adding nice alerts to cells when and event is dropped
Currently, when dropping an event inside a cell, I'm doing the following:
eventDrop: function( event, dayDelta, minuteDelta, allDay, revertFunc, jsEvent, ui, view )
{
alert ("event dropped in ...
0
votes
1answer
21 views
fullcalendar RTL options for day and week views
When using isRTL : true
shouldn't the week and day view - hours column - display on the right side ?
i'm using it like that
$(document).ready(function () {
flag = !1;
...
0
votes
1answer
29 views
fullcalendar - disabling highlight on days during event dragging
I would like to drag & drop events into other dates.
My events can be dropped only into days later then today.
My events cannot be dropped into dates before today.
Currently when dragging an ...
0
votes
1answer
61 views
fullcalendar dayclick mysqli php
So I have this jquery (FullCalendar) and its showing records through the database query.
Everything is fine until here :)
Now what I want is to add an event when the person clicks on a date (Only ...
0
votes
1answer
30 views
FullCalendar - How to have Different clickEvent per eventSource
I am looking for a way to have a different eventClick depending on the eventSource and to have some eventSources that do not have an eventClick. This way I can have an event open a different pop up ...
0
votes
0answers
52 views
Public holidays in jQuery Full Calendar
I was looking for possibility to change the background color of agenda days in Full Calendar for public holidays. I found a lot of discussions about this but I didnt find any relevant solution.
I ...
-1
votes
0answers
35 views
Default data for days with no events in fullcalendar?
What would be the best way to put data into dates that do not contain any events. I am looking to place "Create Event" buttons for all blank days. The js code that does it would need access to the ...
0
votes
0answers
14 views
fullcalendar hover date format (german translation)
in the fullcalendar display on the frontpage, the mouseoverEvent displays the details of an event including the date. The date is displayed in the following way:
"Mai 2, 2013" (for may 2nd, 2013). In ...
0
votes
0answers
19 views
How can we specify custom date range with fullcalendar?
I want to use fullcalendar with custom date range for ex. it should display view for particular date range like from 15th April to 4th May(Spans between two months).
Any suggestions?.
0
votes
0answers
31 views
how to update events from fullcalender depending on user choice?
I'm new to FullCalender. I added full calender on my ASP.NET MVC3 project.
I want to give some filter criteria for events which will be shown in calender.
I loaded events on page load as-
...
-1
votes
0answers
13 views
Can I change JQuery fullcalendar agendaDay timespan to 6AM - 6AM?
Is there a way to change the agendaDay view to display a 24 hours period from 6AM to 6AM the next day? Rather than 12:00 AM to 12:00 AM the next day.
0
votes
0answers
28 views
FullCalendar not displaying feed events in IE
I'm trying implement the FullCalendar using an external feed (JSON). It seems to work fine in Chrome and Firefox, but IE doesn't show any events. I don't see any console errors when loading the ...
0
votes
0answers
40 views
Rails Fullcalendar add event modal doesn't clear data for 2nd add
I have a Rails app using the jquery Fullcalendar. I have a modal to add time to the table Events. The modal shows up fine and you can add an event.
But, when you add a 2nd event, the modal opens ...
0
votes
1answer
71 views
Arshaw fullcalendar & twitter bootstrap Popover (How to dismiss a popover by clicking outside?)
I've found the following example which shows the behavior I require from popover:
How to dismiss a Twitter Bootstrap popover by clicking outside?
However, does anyone know how to achieve similar ...
0
votes
0answers
36 views
FullCalendar jQuery Pluggin, Events Disappearing after drag
I'm having a silly issue here with FullCalendar, where once I run my callback function the event disappears off the page.
This is my settings for the calendar
var calendarSettings = {
...
1
vote
1answer
38 views
how can create mvc entity framework apart price list scheduling
I have a new project for apart retail with mvc, c# and entityframework. I am using fullcalendar in my project. Now my problem is;
First i am creating a new event all days. No problem. But some days ...
0
votes
0answers
46 views
fullcalendar: call web service function when next or prev button is pressed
I want to load events of only one month at a time. At first, show the event of one month in one page and when next or prev button is pressed, show the event of that month from database via web service ...
0
votes
0answers
16 views
Issue accessing Fullcalendar event data in Internet Explorer
I am trying to access a specific event from fullcalendar. It works perfectly in Chrome / FF but not in IE and i'm having a very difficult time figuring out why. In internet explorer if i go:
events ...
1
vote
0answers
89 views
add delete button along with events in jquery full calendar
I am generating events on fullCalendar with this code
$(document).ready(function() {
var date = new Date();
var d = date.getDate();
var m = date.getMonth();
var y = ...
0
votes
1answer
37 views
date format issue facing while retrieving and populate dates/comments in fullcalendar
I have passed full calendar's "start" and "end" date as Java.Util.Date in rest resource service and got saved into Activeobject.
Now, when i retrieve dates then it shows as follow "2013-04-10 ...
0
votes
1answer
50 views
FullCalendar JQuery Plugin : Monthly view spills the cell and expands the calendar height.
I am using FullCalendar version 1.6.0 in my web app. The issue that I am facing is that
if the number of events exceeds say > 10 for a date, the event titles expand the cell vertically which causes ...
0
votes
2answers
148 views
Fullcalendar, backbone.js, Cannot edit event
So, I think I am in over my head here. I am trying to get fullcalendar to work with backbone and django. I am still learning all of this but I can now make new events and save them via ...
1
vote
1answer
71 views
Only month view in fullcalendar (remove/Hide “Day” and “Weeks” view).
As prenently, my fullcalendar has - "Month|Week|Day" view , here i want to remove or hide the Week and Day view as we have been using only "Month" View.
Can you please tell me how it could be acheive ...
1
vote
1answer
22 views
fullCalendar event don't show on week
Sorry for my english, i'm french
var options = {
header: {
left: 'prev,next',
center: 'title,today',
right: 'month,agendaWeek,agendaDay'
...
0
votes
1answer
43 views
Fullcalendar agenda view and Day event doesnt render events within specific time ( hours )
I'm using Fullcalendar from http://arshaw.com/fullcalendar/ , i have search stackoverflow but no answear fits my problem, or i didnt understood. Please paste links if this was already answear.
I have ...
0
votes
0answers
28 views
FullCalendar is adding space after events with a URL
I'm using a pretty basic JQuery plugin called FullCalendar to add easy to use calendar to my website. I've mostly had no troubles until now. The main problem is that when you add a url to events in ...
1
vote
0answers
86 views
Ajax submit of data array in CakePHP not working
I'm making making a scheduling calendar where schedulers can drag and drop members of an organization onto Fullcalendar. I have gotten as far as storing dropped events in an array Object, ...





