Hello: very good work... one info: it is not possible to get the data
with a POST ... in the example all are set for a GEt method


// get the requested page
$page = $_GET['page'];
// get how many rows we want to have into the grid
// rowNum parameter in the grid
$limit = $_GET['rows'];
// get index row - i.e. user click to sort
// at first time sortname parameter - after that the index from
colModel
$sidx = $_GET['sidx'];
// sorting order - at first time sortorder
$sord = $_GET['sord'];

it is possible, with a set, to have


// get the requested page
$page = $_POST['page'];
// get how many rows we want to have into the grid
// rowNum parameter in the grid
$limit = $_POST['rows'];
// get index row - i.e. user click to sort
// at first time sortname parameter - after that the index from
colModel
$sidx = $_POST['sidx'];
// sorting order - at first time sortorder
$sord = $_POST['sord'];

Thank you

On Oct 7, 3:35 pm, Tony <[EMAIL PROTECTED]> wrote:
> I have released a new version of jqGrid.
> Demo page here:http://trirand.com/jqgrid/jqgrid.html
> Home page:http://www.trirand.com/blog/
>
> Enjoy.

Reply via email to