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 };