StephenChou1017 / react-big-scheduler

A scheduler and resource planning component built for React and made for modern browsers (IE10+)
https://stephenchou1017.github.io/scheduler/#/
MIT License
745 stars 415 forks source link

Calendar won't display events that have confliting dates #261

Open TaysonGermano opened 1 year ago

TaysonGermano commented 1 year ago

Hi i've been struggling with the calendar. It won't display events that have dates in which are already set by other event on the same resourceId. For instace if I have an array of events with the following data:

const events = [{id: 1234, start: "2023-02-01", end: "2023-02-20", resourceId: "rc123"}, { id: 5678, start: "2023-02-06", end: "2023-02-28", resourceId: "rc123"}]

It will only diplay events[0] and totally ingore events[1] . I know there's conflits but i want to still be able to see both of them displaying. Is there any settings I should change to solve this? why is this happening?

hbatalhaStch commented 1 year ago

Can you show some code?