I would like to allow users to create a schedule then submit that data via a form and was wondering what the best way to do that is. For example, for one week, they create three events, then they click the save button and that information is transmitted to the server.
Is there a way to attach an <input type='hidden' name='xyz' value='abc'> to an event, so that if it is deleted/removed, then the input is deleted, removed as well?
Or should the events add inputs separately somewhere on the page via JavaScript and delete them when the event is deleted?
Or, is there some other way that it's done?
Thanks.