I use the json events property of FullCalendar to call a php script which returns a JSON string. The string has the required properties plus some extras like 'description'. The documenation says that you can add properties but there is no information on how to do it.
I looked to see if it gets added automatically by looking at 'even...
Which fragment of code bellow can not work in MSIE?
$(document).ready(function() {
var minId;
var fadeTime = '25';
$.ajax({
url: 'JsonFileWrite.php',
type: "POST",
data: "idRequest=true",
success: function(data) {
mi...
I have setup a google calendar using the gcal.js from fullcalendar which displays a month view easilty enough.
What I really want to do is display this calendar in a single day or agenda view instead of the default month view but I cannot for the life of me find any reference to whether this is possible.
...
Hi,
I am using jquery fullcalendar on one of my view pages for an MVC project to show events.
But it doesn't show the events
here is my code:
public class HighlightMonthlyEvents
{
public int id { get; set; }
public string EventName { get; set; }
public long EventStartDate { get; set; }
public long E...
Hi Arshaw,
I was very excited to see a calendar plugin like fullcalendar. i am trying to use fullcalendar to display events for each month. But the events are not displayed on the calendar.
My code is :
[AcceptVerbs(HttpVerbs.Get)]
public JsonResult HighlightCalendar()
{
var tasksList = new List();
tasksList.Add(...
Hi everyone,
Right now in my code, I have
$('#StartDateTime').val(new
Date(event.start).toLocaleDateString()
+ " " + (event.start).toLocaleTimeString());
which this displays "Thursday, July 22, 2010 8:00:00 AM". I was wondering if anyone could help me on how I could convert it to just plain "07/22/2010 08:00 am"?
I would ap...
Simply put, is there a way to have fullcalendar scroll to the current time position in the week view?
If it helps, I'm using Ruby on Rails and jQuery
...
I'm creating a "summary" list of events on the page alongside the calendar. I want to trigger the eventClick handler of an event when I click on the entry in the summary. The markup for a summary entry is
<dd id="E45">9:00am-10:00am</dd>
where the id is fullCalendar's event ID.
How can I trigger an eventClick (on the correct eve...
Hello,
I just download FullCalendar today and I've been trying to combine the JOSN calendar with the gcal. In addition to my JSON data i would like to show national holidays too, Can someone please tell me if this is possible or not.
I've tried this and it's not working. thank you!
$(document).ready(function() {
var date = new Da...
I am pulling events into the calendar using JSON and php. I am know trying to add evenClicks or mouseOver events the the calendar and when I do I get a blank page. My JS knowledge is rather novice so at this point I'm stuck
Heres my calendar script
$(document).ready(function() {
$('#calendar').fullCalendar({
header: {
left: 'pr...
Message: 'null' is null or not an object
Line: 912
Char: 5
Code: 0
URI: http://xenon.imanageproject.com/Scripts/fullcalendar.js
Thanks
jiwan
...
I have this block of code that eventually get serialized to JSON, for use in the Jquery FullCalender plugin. The ToUnixTimeSpan method taskes in a DateTime object and returns the number of seconds since 1970.
DateEnd could be null. In this block of code how do i test for the null and skip the end = ToUnixTimespan(e.DateEnd), if Dat...
Hello! This question about jquery plugin fullcalendar.
How I can return to selected date after postback?..
For example, i have week agenda as default view. Assume I choose next week (custom week) and create the event in it.
After postback I return to default week, but I want get custom week.
How can be resolved this issue?.. Please he...
If you read the title you read my question correctly. I am wondering how I make my events mimic dayClick so any event selected on that day will select dayClick instead of linking with a url. just for insight on what I am doing my calendar currently looks like this
http://img.photobucket.com/albums/v451/Plop4152/Screenshot2010-07-27at433...
Hello everyone.
I just modified some functions such as extended drag and modify them to save a timestamp (start and end) into a hidden input (I send those information to MySQL). But one of the conditions is that event that I dragged can't exist with another event in one day. Is there any method in fullcallendar that can tell me if that ...
fullcalendar 1.4.7 allow adding new events by dropping them onto the calendar from an external list of events.
I would like to update the title of an existing event by dropping another event from the same list. How i can do that.
I wrote this function (below) and i call it from the "bindSegHandlers" function of fullcalendar.js but it doe...
Hello,
Is it possible to set current date to always displayed as the second day at agendaweek view? I've read the documentation and i cant find it.
Thank you.
...
Hi! I'm trying to store fullcalendar selected date and restore it after postback. I get this date from Session via ajax and then use this code:
$('#calendar').fullCalendar('gotoDate', selectedDate);
It works fine if selectedDate is not in default view - all events are shown after load. But if selected date is in default view - I get e...
Hi everyone,
I have a coldfusion cfc that i call to query events between the start and end date. Here is my script:
$(document).ready(function() {
var calendar = $('#calendar').fullCalendar({
events: function(start, end, callback) {
$.ajax({
type: "GET",
url: 'cfc/forecast.cfc?method=GetForecast&returnformat=plain',
data...
Hi all,
In my current project, client's requirement is to use some event calendar, I looked at the Adam Arshaw's Jquery based event calendar, it is so nice and having more than 50% features which my client need. But I will have to customize the event calendar. In the calendar, the month and week views are fully resembling my requirement...