Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

gotoDate on calendar

MarieSep 19 2017 — edited Sep 20 2017

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

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 18 2017
Added on Sep 19 2017
1 comment
419 views