Я решил что-то вроде этого:
- Создание метода контроллера:
def accept_budget
if @budget_history.toggle!(:accept)
render json: {}, status: :ok
else
render json: @budget_history.errors, status: :unprocessable_entity
end
end
- Создать маршрут
resources :budget_histories do
member do
put :accept_budget
end
end
- Флажок html
<li class="checkbox m-b-15">
<label>
<input type="checkbox" onchange="checkAllBudgetHistoryItems(this, '<%= budget_history.id %>');" name="budget_history_items" id="budget_history_item_<%= budget_history.id %>" value="<%= budget_history.id %>" />
<i class="input-helper"></i>
</label>
</li>
- Редактировать скрипт:
<script language="javascript">
function checkAllBudgetHistoryItems(el, id) {
if (el.checked) {
$.ajax({
type: 'PUT',
url: '/budget_histories/' + id + '/accept_budget',
data: 'budget_history_item_' + id,
success: function (data) {
$(el).prop('checked', true);
}
});
} else {
$.ajax({
type: 'PUT',
url: '/budget_histories/' + id + '/accept_budget',
data: 'budget_history_item_' + id,
success: function (data) {
$(el).prop('checked', false);
}
});
}
}
</script>