My favorites | Sign in
Project Home Issues
New issue   Search
for
  Advanced search   Search tips   Subscriptions
Issue 801: 'length' is null or not an object
1 person starred this issue and may be notified of changes. Back to list
Status:  Done
Owner:  ----
Closed:  Feb 2011


Sign in to add a comment
 
Reported by jaredgoe...@gmail.com, Jan 20, 2011
Getting this error... Any ideas to fix???  This happened in IE8

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C)
Timestamp: Thu, 20 Jan 2011 17:36:55 UTC
 
 
Message: 'length' is null or not an object
Line: 28
Char: 350
Code: 0

Jan 20, 2011
#1 jaredgoe...@gmail.com
was able to get fix this using ...

https://code.google.com/p/fullcalendar/issues/detail?id=456

now my events only show in the "week" and "day" view and do not show in the "month" view in IE8.  

i am loading mulitple google calendars...

<script type='text/javascript'>

	$(document).ready(function() {
	
		$('#calendar').fullCalendar({
			header: {
				left: 'prev,next today',
				center: 'title',
				right: 'month,agendaWeek,agendaDay'
			},
		
			// Family Life Calendar
			eventSources: [
        		$.fullCalendar.gcalFeed("http://www.google.com/calendar/feeds/lbcfamilylife%40gmail.com/public/basic"),
        		$.fullCalendar.gcalFeed("http://www.google.com/calendar/feeds/b45jqujb24i81nipfog7mrlf5o%40group.calendar.google.com/public/basic"),
        		$.fullCalendar.gcalFeed("http://www.google.com/calendar/feeds/lbcyouth.org%40gmail.com/public/basic"),
			],
			
			eventClick: function(event) {
				// opens events in a popup window
				window.open(event.url, 'gcalevent', 'width=700,height=600');
				return false;
			},
			
			loading: function(bool) {
				if (bool) {
					$('#loading').show();
				}else{
					$('#loading').hide();
				}
			}
			
		});
		
	});

</script>
Feb 13, 2011
Project Member #2 adamrs...@gmail.com
glad you got it to work
Status: Done
Sign in to add a comment

Powered by Google Project Hosting