I am trying to integrate a calendar plugin like google calendar with custom database and code with asp.net MVC in C#.
It needs to handle Day/Week/Month Events in the Calendar as like google calendar.
I found the similar plugin in jquery http://www.webappers.com/2009/08/04/jquery-weekly-calendar-plugin-inspired-by-google-calendar/. But...
I am trying to integrate the jquery Full Calendar (http://arshaw.com/fullcalendar/) in my asp.net mvc application.
I need to use this full calendar to add/edit/delete/show the events using the sql server database as backend.
Do anyone have the sample code to implement the add/edit/delete events with this Full Calendar.?
...
I am using asp.net mvc to list the events in the jquery full calendar. Below is the script i am using to list the events through json from mvc.
$('#calendar').fullCalendar({
theme: true,
editable: true,
disableDragging: true,
disableResizing: true,
header: {
left: 'prev,next today',
center: 'title',
right: 'month,bas...
Hello,
I would like to integrate the jQuery fullcalendar into my PHP website, but I don't know how to handle the event and how to use the JSON data from MySQL.
Any advice would be appreciated.
...
Hi there,
I've got a functional fullCalendar http://arshaw.com/fullcalendar/ working retrieving a single source from Google Calendar for the events like so:
$('#calendar').fullCalendar({
events: $.fullCalendar.gcalFeed(
"http://www.google.com/calendar/feeds/etc", // feed URL
{ className: 'gcal-events' } ...
hi guys, I'm trying to use jquery Full Calendar from http://arshaw.com/fullcalendar
I searched the docs alot but I could not find how I can retrieve the current month a user is on at a certain moment.
On render it is set as the current month in the title, but I cant find a way to use that info. I want to sent the month to my ajax call ...
Hello All,
I was wondering if someone could give me some pointers to help optimize my jQuery Full Calendar Code. The issue i'm running into is when I fetch a lot of events through AJAX (> 25), the browser stalls and becomes unresponsive usually resulting in a message to the user to abort the script. I'm trying to avoid this error, an...
I need to show a popup (balloon popup as in google calendar) while creating an event in the jquery full calendar.
Any best plugins for the popup which shows as balloon and also which handles the click events (which I am using to create/edit/delete events from popup)?
...
I am trying to pass an object as parameter to the javascript function as:
.html('<span class="link" onclick="javascript:ShowEventDetails(' + event + ','
+ event.Id + ',' + event.Name + ',' + view + ')">' + event.title
+ '</span>')
In the above js, the event and view are objects from the jquery calendar Full Calendar, which i...
Has anyone else had this problem? Here is some code:
$(document).ready(function() {
$('#calendar').fullCalendar({
editable: true,
disableDragging: false,
height: 400,
weekMode: 'variable',
defaultView: 'agendaDay',
allDaySlot: false,
weekends: false,
minTime: 7,
...
I'm a fairly new jQuery user looking to extend an existing jQuery plugin that does about 75% of what I need. I've tried to do my homework on this. I've checked out the following questions on stackoverflow:
Extending a jQuery Plugin
Extend a jQuery Plugin
jQuery: extend plugin question
I've read up on the extend method. However, al...
Hi,
I would like to pass fullcalendar settings (i.e. startTime, endTime) via ajax. I would like to have something similar to this:
eventSources:
[
"events.php",
"settings.php"
]
where events.php holds events array, settings.php holds settings array. If this approach works, how can i use settings values? If settings.php generates jso...
How to add new event + mini calendar next to day view+full calendar plugin
...
I just implemented Adam Shaw's popular calendar called 'fullcalendar' (http://arshaw.com/fullcalendar/) using CodeIgniter. But I require addition and other operations on events from my database. I was able to find one CakePHP plugin with the same purpose from here, http://bakery.cakephp.org/articles/view/events-plugin.
Since I'm not in...
Hi,
I'm using jQuery Fullcalendar from arshaw.com/fullcalendar/ and I would like to replace day number with link to event, which I'm getting via JSON from database, like on this image:
I've got small calendar with only one event per day, so default display isn't necessary for me. I need something simpler and cleaner.
Since I'm not ver...
How can i get notified when the user click on 'next' (arrow) ?
I'm using the calendar in month view and I want to load the next month data on demand.
Also, do smbdy has an example of consuming data from ASP.NET (AJAX call) ?
...
Hi,
I am using jQuery fullcalendar in my application. I want to display the calendar only on the right side of my screen but not sure how to reduce the size of the calendar. Right now it is displaying in the full screen
...
I am trying to fetch the events data through a URL which will return JSON data.
The same code is working with jQuery 1.3.2 but not with jQuery 1.4.1
I am getting this error in FireBug console
a is undefined
for (var i=0; i
fullcalendar.js (line 369)
I am getting the JSON data as I can check it in response header of FireBug
jQuer...
I've the following code to fetch events:
$('#calendar').fullCalendar({
theme: true,
slotMinutes: 10,
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay',
},
defaultView: 'agendaDay',
allDaySlot: false,
editable: false,
events: "/cgi-bin/shlk/getshlkruns.pl"
});
The output from getshlkruns.pl is fairl...
Like others I'm having problems getting timed events to show up on the agendaWeek view. If you look at the events below, the first two are mine and show up as all day events. The last one is from the documentation and shows up in the correct time block. I've been staring at this so long I'm sure I'm missing something simple. Can anyone e...