In-page rendering

0

I'm new to rails and I'm having difficulty with RENDER

I have a "_tables-client" rendering inside the page and when I order to execute a method, I want to update only the specific render and not the entire page,     

asked by anonymous 19.07.2017 / 19:18

1 answer

1

You can use the AJAX .load() method, selecting only what you want to update and searching for updated data in your controller via the URL, and you can also pass parameters.

$(selector).load(URL,data,callback);

link

    
23.09.2017 / 01:19