Our pure JavaScript Scheduler component


Post by Luffy »

Hi,

When working with multiple schedulers they to need be 'partnered' in order to do the drag and drop between schedulers.

If we removed that partnered config, then the schedulers are act as 2 standalone instances. Right ?

Is there anyway to disable this combine horizontal scrolling but keep the drag and drop feature between schedulers ?

Post by mats »

When working with multiple schedulers they to need be 'partnered'
No, partnering is just about scroll syncing. Just remove partner and it'll work as you want.

Post by Luffy »

Thanks Mate. Took sometime to find how to remove this partnered config.
export default {
  id: "bottom-scheduler",
  appendTo: "container",
  minHeight: "20em",
  flex: "1 1 50%",

  //   partner: "top-scheduler",
  barMargin: 10,
I think this is the way. Right ?

Post by mats »

Yes

Post Reply