Hello! I have the following code generated by Scaffold:
<p id="notice"><%= notice %></p>
<h1>Produtos</h1>
<table class="table table-striped" id="tabelaProdutos">
<thead>
<tr>
<th>Nome</th>
<th>Preco</th>
<th>Descricao</th>
<th colspan="3"></th>
</tr>
</thead>
<tbody>
<% @produtos.each do |produto| %>
<tr>
<td><%= produto.nome %></td>
<td><%= produto.preco %></td>
<td><%= produto.descricao %></td>
<td><%= link_to 'Show', produto %></td>
<td><%= link_to 'Edit', edit_produto_path(produto) %></td>
<td><%= link_to 'Destroy', produto, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<input type="button" id="botaosomar" value="OK" onclick="select()" />
<br>
<%= link_to 'New Produto', new_produto_path %>
I need to have the items in this table selected and that with a button, I can add the Float values ("Price" column) of these selected items. The issue is that I am lousy in javascript and I do not know CoffeeScript. I do not know where to start and I did not find a didactic tutorial on CoffeeScript. This need is part of a college job.