Hi Alfredo,
Thanks for the update.
We can change the content of the copy of appointment while
dragging by making use of drag event. In that event, you can replace the
content text as per our requirement like below,
onDragging(args){
let date = this.instance.formatDate(args.data.StartTime, { skeleton: 'yMMMEd' });
let time = this.instance.formatDate(args.data.StartTime, { skeleton: 'hm' }) + this.instance.formatDate(args.data.EndTime, { skeleton: 'hm' });
document.querySelector('.e-drag-clone .e-appointment-details').replaceWith("Date: "+ date + "\n" + "Time: "+ time);
}
For your reference, we have prepared the sample to change
the content text while dragging the appointment that can be available in the
below link.
Sample: https://stackblitz.com/edit/angular-f5xwgu?file=app.component.ts
Please check the above sample and get back to us if you need
any further assistance.
Regards,
Vengatesh