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!

fullcalendar defaultview

Frank LehmannJun 15 2020 — edited Jun 15 2020

Hi helpers,

it is possible to change the defaultview with users choice ?

pOptions.defaultView  = "agendaWeek";

The option

pOptions.weekends      = false;

could be changed, when using a page item.

if ($v('P1000_SHOWWEEKEND')=="false")

    {

        pOptions.weekends          = false;

    }

    if ($v('P1000_SHOWWEEKEND')=="true")

    {

        pOptions.weekends          = true;

    }

But the standard defaultview could not be changed !

I have tested "agendaMonth" or "month" !

Nothing is working !

Any ideas ?

Thanks.

Comments
Post Details
Added on Jun 15 2020
3 comments
672 views