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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Customizing Calendar Range (validRange,renderRange,visibleRange)

TCCCCCCCCCCAug 13 2019 — edited Aug 22 2019

There are times when I need to show the week before the start of the month or the week after the end of the month. I was able to use validRange to make it so that it would not show the grayed out dates at the end of the calendar by doing this:

$('#USER_CAL_calendar').fullCalendar('option', 'validRange', {

      start: $v("P11_RANGE_START"),

      end: $v("P11_RANGE_END")

    } );

But that was only part of the issue. Take for instance September 2019, The 1st falls on a Sunday so the first row of the calendar is all that I can see. I need it to show August 30th and 31st as well.

I need it to display the week of August 25th as the top row of the calendar. I have tried this but can't get it to work:

$('#USER_CAL_calendar').fullCalendar('option', 'validRange', {

      start: $v("P11_RANGE_START"),

      end: $v("P11_RANGE_END")

    }, 'renderRange', {

      start: $v("P11_RANGE_START"),

      end: $v("P11_RANGE_END")

  }, 'visibleRange', {

      start: $v("P11_RANGE_START"),

      end: $v("P11_RANGE_END")

    }

  );

P11_RANGE_START is 2019-08-30

P11_RANGE_END is 2019-10-01

Comments

843854
FYI: I'm in contact with the postgres team to work on the problem. it is caused by the way blobs are implemented in the jdbc driver.

http://archives.postgresql.org/pgsql-jdbc/2002-08/msg00096.php
1 - 1

Post Details

Added on Aug 13 2019
1 comment
1,150 views