Hi all
Fortunately this is rather easy to acomplish using Zend Framework.
If you use mtype: 'GET' in jqGrid, then use
$page = $this->_request->getQuery('page'); in your Zend action.
If you user mtype: 'POST' in jqGrid, then
$page = $this->_request->getParam('page') in you Zend action.
Hope this helps somebody!
Cheers