You need to sign in to do that
Don't have an account?

Jquery Fullcalendar within Tabpanel
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
Hi,
Try giving full path of the calender example:
jQuery("#mainpage\\:mainform\\:mainpb1\\:mainpb\\:dtpicker").datepicker({changeYear: true, changeMonth: true, duration: "fast", defaultDate: +0, showAnim: 'fadeIn'});
This is an Example Path
You try using your exact Path from mainPage till Calender tab Panel
regards,
CKumar