Premium support for our pure JavaScript UI components


Post by thamismedina »

Hello,

I saw that the default behavior for coping two events and they are from diferent resources is that when you paste it they go to diferent resources, but for some reason when i tried in my project when i copy two events from diferent resources and i paste it they endup in the same resource, tried to use a simples and basic setup for my vue project and the result is always the same, can you guys help me understand what am i doing wrong or if this is a bug or something?
this is my config,

const schedulerProProps = {
  startDate: new Date(2024, 0, 1, 6),
  endDate: new Date(2024, 0, 1, 20),
  viewPreset: "hourAndDay",
  rowHeight: 50,
  barMargin: 5,
  multiEventSelect: true,
  resourceImagePath: "users/",
  columns: [
    {
      type: "column",
      text: "Name",
      field: "name",
      width: 130,
    },
  ],
  features: {
    eventCopyPaste: {},
  },
  // CrudManager arranges loading and syncing of data in JSON form from/to a web service
  project: {
    transport: {
      load: {
        url: "./data/data.json",
      },
    },
    autoLoad: true,
  },
};

export { schedulerProProps };

Post by ghulam.ghous »

Which version of Bryntum are you using, this issue was fixed in 6.1.8: https://github.com/bryntum/support/issues/10948 So if you are using a older version than this please upgrade.


Post by thamismedina »

Oh i see, im using 6.1.6, thanks a lot for the fast response


Post Reply