Hi All,
Thanks for any help. I had the below code working before we installed Patch Set 5.1.2.00.09. Any ideas on why it is not working anymore please? I am not very experienced in Java.
$(document).ready(function() {
// Get Year and Month
var year = $("#P201_STARTYEAR").val();
var month = $("#P201_STARTMONTH").val()-1;
// Goto the date
var d = new Date();
d.setFullYear(year);
d.setMonth(month);
$('#MyCalendar_calendar').fullCalendar('gotoDate', d);
});
Thanks