Our pure JavaScript Scheduler component


Post by javierscars »

Hi, i'm facing a problem, i would like to disable the "autoscroll" of the name for the events when i scroll the calendar window. But i cannot find any option to do it and i'm not able to find a workaround.

Attachments
BryntymRecording.gif
BryntymRecording.gif (640.96 KiB) Viewed 528 times

Post by mats »


Post by javierscars »

mats wrote: Thu Mar 04, 2021 6:52 pm

Please disabled this feature: https://bryntum.com/docs/scheduler/#Scheduler/feature/StickyEvents

I tried

stickyEventsFeature = {
    false
}

and

 tickyEventsFeature = {
     {
         disabled: true
     }
 }

in the BryntumScheduler component and also
accessing to the schedulerInstance and doing

schedulerInstance.features.stickyEvents.disabled = true;

none of them work, the events label are moving... Any clue?


Post by pmiklashevich »

schedulerInstance.features.stickyEvents.disabled = true;

Disabling dynamically should work, ticket here: https://github.com/bryntum/support/issues/2495

stickyEventsFeature = {
    false
}

Configuration doesn't work because the feature is not in the wrapper. We're working on autogenerated wrapper. Meanwhile you can add it manually and rebuild the wrapper (BryntumScheduler.js):

/* #region Features */
features = [
        'stickyEventsFeature',

Pavlo Miklashevych
Sr. Frontend Developer


Post Reply