I would like my website visitors to drag and drop icons, image, or even calendar events on a calendar that allows me to see where it ends up by date and time to plan for them.
An interactive calendar that allows website visitors to move events around and for the date to be documented.
Thanks for your response. I would say that drag & drop is not my goal, it’s the means. In other words, I am open to suggestions, if you have any, that allows users to switch a date of an item that is on the calendar.
How about clickable arrows that allow the website visitor to move an item forward a date and back a date?
This might work… But I think that maybe you should consider a date picker for that.
Make it hidden on load, the, add a button (or a click on you events, whatever works for you), that when is clicked, it will show the data picker:
export function button1_onclick() {
$w('#datePicker1').show();
}
Then, read the date from it and update it wherever you like.