1)
I am using the jqgrid
plugin to show results from different selections a user can make on sliders and such. The jqgrid loads via a php
command:
$grid->SelectCommand = 'MySQL SELECT statement here';
But I want to change this, and reload the data at runtime (via jquery) when the user makes a change.
(Also if possible I would like to know the number of results found so I can display it somewhere else bigger.)
2)
Also when the user clicks on a row in the grid.. I want a js function to be called and the data from the row to be passed into the function?