• num5labonte
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies

I have a fullcalendar control which pulls data from a json responder. It works just fine in FF, Chrome, and IE as a standalone component in the page. However when I embed the control within a tabpanel the calendar doesn't fire the event to pull in the json data in IE(Chrome and FF render just fine. I have a debug line in the responder and it never kicks off when the page is rendered in IE. The calendar displays just fine, it just doesn't pull the events, if I paste the json response code in it displays just fine.

 

code:

var j$ = jQuery.noConflict();

j$(document).ready(function() {

var date = new Date();

var d = date.getDate();

var m = date.getMonth();

var y = date.getFullYear(); 

 

j$('#calendar').fullCalendar({

header: {

left: 'prev,next today',

center: 'title',

right: 'month,agendaWeek,agendaDay'

},

editable: false,

 

events: "Training_CalendarJsonResponder" ,

 

});

 

 Thanks

Andrew