disable_with に問題があります。モーダル内に simple_form があり、disable_with が機能しません
ただし、モーダル内の form_tag ではうまく機能します
ここに私のコードがあります
> <div class="modal-header"> <%= link_to '×', '#', class: 'close', data: {dismiss: 'modal'}, rel: 'tooltip', title: t(".close") %>
> <h3><%= t(".title")%></h3> </div>
>
> <div class="modal-body"> <%= simple_form_for(@user_address, url:
> update_addresses_path, remote: true, method: :put, html: {class:
> 'form-horizontal'}) do |f| %>
> <%= hidden_field_tag :id, @user_address.id %>
> <%= f.input :nickname %>
> <%= f.input :address %>
> <%= f.input :number %>
> <%= f.input :complement %>
> <%= f.input :neighborhood %>
> <%= f.input :postal_code %>
> <%= f.association :state, collection: State.all(order: :symbol), label_method: :symbol, input_html: {id: "state_id_order"} %>
> <%= f.input :city_id, collection: State.all(order: :symbol), as: :grouped_select, group_label_method: :symbol, group_method: :cities,
> include_blank: true, input_html: {id: "city_id_order"} %> </div>
>
> <div class="modal-footer">
> <%= link_to_cancel "#", data: {dismiss: "modal"} %>
> <%= f.button :submit, class: "btn-warning", disable_with: t(".saving") %>
> </div>
どうすれば修正できますか?
ありがとう