Вложенная форма Rails добавление элементов в строки таблицы
моя цель-использовать драгоценный камень nested_form:https://github.com/ryanb/nested_form но вместо того, чтобы создавать новый набор меток и полей каждый раз, когда вы добавляете объект, я хотел вставить строку в существующую таблицу.
= nested_form_for @transaction do |f|
%h3 Line Items
%table
%tr
%th Branch
%th Department
%th Invoice #
%th Amount
%th Transaction Type
%th Deposit (y/n)
%th
= f.fields_for :line_items do |line_item|
%tr
%td
= line_item.text_field :location_id
%td
= line_item.text_field :department_id
%td
= line_item.text_field :invoice_num
%td
= line_item.text_field :amount
%td
= line_item.text_field :transaction_type
%td
= line_item.text_field :deposit
%td= line_item.link_to_remove "Remove"
%p= f.link_to_add "Add", :line_items
The .кнопка link_to_add просто создает кучу полей в первой строке, первый td.
<h3>Line Items</h3>
<table>
<tr>
<th>Branch</th>
<th>Department</th>
<th>Invoice #</th>
<th>Amount</th>
<th>Transaction Type</th>
<th>Deposit (y/n)</th>
<th></th>
</tr>
<div class="fields"><tr>
<td>
<input id="transaction_line_items_attributes_0_location_id" name="transaction[line_items_attributes][0][location_id]" size="30" type="text" />
</td>
<td>
<input id="transaction_line_items_attributes_0_department_id" name="transaction[line_items_attributes][0][department_id]" size="30" type="text" />
</td>
<td>
<input id="transaction_line_items_attributes_0_invoice_num" name="transaction[line_items_attributes][0][invoice_num]" size="30" type="text" />
</td>
<td>
<input id="transaction_line_items_attributes_0_amount" name="transaction[line_items_attributes][0][amount]" size="30" type="text" />
</td>
<td>
<input id="transaction_line_items_attributes_0_transaction_type" name="transaction[line_items_attributes][0][transaction_type]" size="30" type="text" />
</td>
<td>
<input id="transaction_line_items_attributes_0_deposit" name="transaction[line_items_attributes][0][deposit]" size="30" type="text" />
</td>
<td><input id="transaction_line_items_attributes_0__destroy" name="transaction[line_items_attributes][0][_destroy]" type="hidden" value="false" /><a href="javascript:void(0)" class="remove_nested_fields" data-association="line_items">Remove</a></td>
</tr>
<td><a href="javascript:void(0)" class="add_nested_fields" data-association="line_items">Add</a></td>
</div>
</table>
Я пробовал разместить .link_to_add в нескольких местах, но он не помещает их в свои собственные ряд.
есть ли простой способ добавить строку полей ввода каждый раз?
2 ответов
это мне очень помогло: https://github.com/ryanb/nested_form/wiki/How-To:-Render-nested-fields-inside-a-table
по умолчанию
fields_for
внутриnested_form_for
добавляет<div class="fields">
обертка вокруг каждого вложенного объекта. Но когда вам нужно отобразить вложенные поля внутри таблицы, вы можете отключить оболочку по умолчанию, используя:wrapper => false
опция и использовать пользовательский:<table> <%= f.fields_for :tasks, :wrapper => false do |task_form| %> <tr class="fields"> <td> <%= task_form.hidden_field :id %> <%= task_form.text_field :name %> </td> <td><%= task_form.link_to_remove 'Remove' %></td> </tr> <% end %> <tr> <td><%= f.link_to_add 'Add', :tasks %></td> </tr> </table>
Примечание: необходимо указать поле id. В противном случае fields_for вставит его после
</tr>
.Также вам нужно переопределить поведение по умолчанию для вставки новых подформ в форму с помощью javascript:
window.NestedFormEvents.prototype.insertFields = function(content, assoc, link) { var $tr = $(link).closest('tr'); return $(content).insertBefore($tr); }
аналогичный метод можно использовать для списков, для совместимости с сортируемым списком jQuery UI.
если вы используете simple_form, добавьте параметр :wrapper = > false в окружающий вызов simple_nested_form_for, иначе он будет перезаписан: wrapper => nil по умолчанию.
Я закончил тем, что поставил свой link_to_add в качестве последней строки таблицы, добавил Это в свое приложение.js (в основном из примера на вики)
jQuery(function ($) {
window.NestedFormEvents.prototype.insertFields = function(content, assoc, link) {
if($(link).hasClass('insert_in_table')){
return $(content).insertBefore($(link).parent().parent());
}
else{
return $(content).insertBefore(link);
}
};
});
моя форма выглядит так:
<table class="tab">
<tr>
<th>My Headers</th>
</tr>
<%= f.fields_for :line_items, :wrapper => false do |form| %>
<tr class="fields">
<td>MY FIELDS</td>
</tr>
<% end %>
<tr>
<td><%= f.link_to_add "Add more line items", :line_items, :class => 'insert_in_table' %></td>
</tr>
</table>