Not the most efficient way, but you may return the completed HTML-partial for your table to the Ajax-Request, and update the Div-Container on the Page with the table with the result you got back. In most cases this is the easiest way: just swap the content of the div.
Sample Code
action in your sinatra main file:
# some code
post "/path/to/your/action" do
# get the parameters you need and do the update operation, then:
@goods = Good.all # if you use activerecord, or use what you want to get the list
slim :goods_table # or haml or erb or ...
end
# some code
your view file (i'll use slim here for example):
table
tr
th title
th price
th weight
th discount
- @goods.each do |good|
th
td = good.title
td = good.price
td = good.weight
td = good.discount
I assume your table is placed in a div with the id "goods-table". So the JS with jquery would be something like:
$.post("path/to/your/action", {parameter1: x, paramater2: y}, function (data) {
$("#goods-table").html(data);
});