I have a list of Users and I want Admin to sent password to those users with a button. So I saw bootstrap buttons javascript plugin and I used the loading one.
This is the index.html
<table>
<% @users.each do |user| %>
<td>
<dl>
<dt><%= user.name %></dt>
</dl>
</td>
<td><%= link_to 'show', admin_user_path(user.id) %></td>
<td><%= button_to 'Send password', send_mail_path(user.id), remote: true, class: "btn btn-primary", :form => {:"data-loading-text" => "wait ..."} %></td>
<% end %>
</table>
which ends in this html:
<table>
<tbody>
<td>
<dl><dt>Jonh</dt></dl>
</td>
<td><form method="post" data-remote="true" data-loading-text="attendi ..." class="button_to" action="/admin/users/send_mail/26">
<div><input type="submit" value="send password" class="btn btn-primary">
<input type="hidden" value="bLGRJ1j9Hv75PsN4fuma0NlmYwAbS//1l884ShOotcw=" name="authenticity_token"></div>
</form></td>
And in admin assets/javascript/admin/users I have index.js.erb
$('.btn').button();
$(document).ready(function(){
$('.btn').click(function() {
$(this).button('loading');
});
});
But the loading animation doesn't work. Any suggestion? I am very new to both rails and jquery