I normally don't use tables for forms, but when having a nested form (when using nested_form or cocoon gem), is it okay then to put each set of form elements inside a table row?
To me, this seems pretty intuitive: every row in the table represents an object. But neither the nested_form nor the cocoon gem add tables in their examples by default, so I wonder whether using forms isn't the best way to go?
Yes. If you are inputting tabular data then you should use a table.
I haven't tested the following examples but I think it should work. Assuming you are building a receipt with a bunch of line items, each with a description and price. In your view do:
association-insertion-node: This controls where to insert the new line_item. In the example I use the table body.
association-insertion-method: The jQuery method used to insert the new line_item. In the example I append it to the end of the table body.
In _line_item_fields.html.haml:
The .nested-fields class is important as it tells cocoon which element to delete when the "Remove" link is clicked.