The question is likely confusing and I apologize. I wasn't sure how best to word it.
I am using jqGrid in a jQueryUI dialog which is inside a form. The user will use this form to create and edit Events.
Upon editing, the user can click a button to open a dialog showing a grid of saved locations for the event. I want to give them the ability to remove saved locations, but I don't want to delete them right away on the server because they may decide to not save the changes on the main form.
What I'd like to do is build an array containing the IDs of what locations they delete with the default delete navigator delete button. When I confirm deletion of rows, it wants an editurl
, but I don't want to delete them right now.
Is there a good way to track their deleted records and then delete them once they save the event? I am wondering if I should create a server-side collection/file and read it once the Event itself is saved; I have no idea what the best approach is for this.
Thank you in advance :)