Let me try and explain this..
I have a grid where users can browse deals.. if they find on they like one, they click 'Claim' and this brings up a model form for the 'ClaimedDeals' window, which has lots of prefilled HIDDEN fields by using filter_item in the URL (dealid for example) and auto propagates Created By, Creation Date. As soon as they click SAVE and CLOSE.. the new record is created without them actually needing to do anything
IN technical terms.. when user is on URL
index.php?option=com_mycomponent&view=deals
They click a button that opens in a modal
index.php?option=com_mycomponent&view=claimdeal&filter_dealid=3
The modal window has ALL fields hidden as they are prepopulated by the URL or autogenerated by the core system.. so all the user has to do is click SAVE&CLOSE (relabelled - I understand the ruies and want to claim this deal) and the new record is created in claimdeals with the logged in user as the created_by and owner of the record
Ideally, I would prefer to skip this modal window stage altogether as it is not needed
Can I fire a save event that will create a new record and replace this modal, with some information passed via a BUTTON or URL without having to open a MODAL window or FORM screen