I am using the JsHelper to submit a form. But, when I try to submit the form when the form is encapsulated in a table for example, the submission goes ahead, but submits without the form data. I suspect it has to do with the jQuery function .closest('form') which the JsHelper uses when doing the AJAX submission to collect the data I presume. Does .closest() get confused when the form resides in multiple DOM elements? A simple example of my problem looks like:
<table><tr>
<?php echo $this->Form->create(); ?>
<td><?php echo $this->Form->input('item'); ?></td>
<td><?php echo $this->Js->submit('Send', array('update' => '#a-div')); ?></td>
<?php echo $this->Form->end(); ?>
</tr></table>
The above would make the AJAX submission but doesn't attach the ['Model']['item'] to the submission. Is there anyway to mitigate the problem, that is, still encapsulating the form in a few div's or table cells whilst still sending the relevant data correctly? I am trying to make the form look nice, so I want to use multiple DOM elements to format the form.