Wow, that was fast, first time asker here, I have an SQLFORM.grid in a view, when I click the pagination links at the bottom of the page 1, 2, 3 etc, the whole page refreshes. To avoid this problem, I created a component and put it in a view <div id="grid"> {{=LOAD('default','ajaxTable2.load',ajax=True, target='grid', content='loading...')}} </div>
<https://lh5.googleusercontent.com/-IuP9zYl2i3E/UAzI4jmSzaI/AAAAAAAACrA/tjLj4mSDifA/s1600/pagination+without+refresh.png> this will solve the whole page refresh problem, but now I want to filter the table from an input box for example if I have 100 records, when I type in 50 in the input box, the grid will return the first 50 records only, how would I go about solving this problem that avoids the page refresh problem? --