tags:

views:

22

answers:

1

when i select the drop down list it gets JSON result and display events in full calander but i am having problem in IE 8 they show up fine in firefox . The error message is as follows.

Message: 'undefined' is null or not an object in IE 8 Line: 809 Char: 2 Code: 0 URI: http://xenon.imanageproject.com/Scripts/fullcalendar.js

Thanks in advance

A: 

This is a shot in the dark ( And I'm sleepy as hell ) but:

function normalizeEvent(event, options) {
    event._id = event._id || (event.id == undefined ? '_fc' + fakeID++ : event.id + '');

Try changing it to

function normalizeEvent(event, options) {
        event = event || window.event;
    event._id = event._id || (event.id == undefined ? '_fc' + fakeID++ : event.id + '');

Also - Can you confirm whether it works in IE6/IE7? Also try alerting all around the place to see where it is

meder
Now the error occured and gives error message as Webpage error detailsUser Agent: Timestamp: Sun, 18 Jul 2010 08:12:06 UTCMessage: 'null' is null or not an objectLine: 912Char: 5Code: 0URI: http://xenon.imanageproject.com/Scripts/fullcalendar.jsin IE 6,7,8 Also the Month does not display at first(when page loads) after i choose Show milestones assigned to then only the month displays Please take a look on this site.http://xenon.imanageproject.com/en-US/milestonesusername:- jenonpassword:-jenon123
jiwan