Our pure JavaScript Scheduler component


Post by Andres »

Can I disable events blocks animation when they drawing?


Post by mats »


Post by Andres »

After setting this parameter, the animation still works.


Post by saki »

How do you do it? Post please your code.


Post by Andres »

<bryntum-scheduler *ngIf="assistant"
      #scheduler
      tooltip = "My cool Scheduler component"
      [resources]="assistant.resources"
      [events]="assistant.events"
      [features]="features"
      [startDate]="assistant.startDate"
      [endDate]="assistant.endDate"
      [viewPreset]="viewPreset"
      [useInitialAnimation]="false"
    </bryntum-scheduler>

I see what parameter works if I pas 'slide-from-top' for example, but it dosent resolve my problem.) I think its another animation, I have a video, how I can upload it?


Post by saki »

Does "false" resolve as a Boolean false? The Bryntum component needs both type and value for testing.

Try:

[useInitialAnimation] = false

// or put it into `assistant` object as Boolean false and then

[useInitialAnimation] = "assistant.useInitialAnimation"

Post by Andres »

https://drive.google.com/file/d/1uw3OS7wjM9TaaNcXh_BIwl5vqoYAGGEm/view I provide the video, when you can see that blocks a jumping, its another animation


Post by pmiklashevich »

Pavlo Miklashevych
Sr. Frontend Developer


Post by Andres »

Pavel you are great, you help me again.) Also another question: how i can disable dragging from one line to another one? that I can drag elements only in one line


Post by pmiklashevich »

You're welcome. Please ask one question per thread.

Pavlo Miklashevych
Sr. Frontend Developer


Post Reply