I've got a form that has a "detail" section iframed in. Take a look here:
[URL Removed] click add item,
then you'll see that you can type in the first 5 fields and hit update. These will save as expected.
Try adding in some data into the "vintages" section (fill in all fields) and click "Save and Add". This will save your edit and add a new record for editing. This is iframed in.
Now. My issue is that if I complete the first 5 fields, then type in the vintage information but do not click "save and add", only clicking "update" it won't submit the iframe and the data contained within will be lost.
Any suggestions on how I can make this outform also submit the inner form. I've already tried this:
<script>
$(function(){
$('#item_edit').submit(function(){
alert('try');
$('iframe').first().contents().find('.form').submit();
});
});
</script>
In fact this is on the form at the moment and it doesn't work. It will run but it doesn't want to submit. In addition, if I manually run $('iframe').first().contents().find('.form').submit(); then it will submit and save the contents of the detail/vintage form. So I think the parent form submits before the child form has a chance too.
Any ideas on how to avoid this?
Jason