Replace $_REQUEST when obtain parameter value with GetParam function,which get the parameter from GET or POST only- Fix in selectLimit method where the $param input parameter was nulled
Fix for obtaining the count parameter from the generated query object
Fix for Excel export where the header function was placed in the wrong placewhich causes in some system to output only certain record set.
Fix in renderGrid method to be compatible with jQuery 1.4.x
Fix for count parameter not to be included in userdata
Fix for PostgreSQL to get the right columns types (typo error)
Fix for MySQL PDO driver to support TYNIINT (Also PDO bug in driver)
Fix in searching to get the propererly values when the encoding is utf-8
Fix in setGridParam method
Fix in serching when we get the parameters from search. Now we check ifthe build in PHP json_decode exists. If this is not true we use our own decodefunction
Fix when a PHP STRICT error checking is on. Now all related functions are declared as public static.
replace PHP array_merge with own array_extend. The array_merge in certaincases deletes the already setted properies.
Fix in decode function to treat correct " in the result set.
Additions
Added debugging. This is done with $grid->debug = true. In this case a jqGrid.log file is created in the directory where the script is executed.
To querySubgrid method is added second parameter $echo, if set to true the result is returned as object
Added SQLite driver via PHP PDO. The driver is still in beta. The problem in this driver is that there is a bug in the PHP SQLite PDO driver when theresult set does not contain data. In this case the columnMeta function returnfalse. This mean that if the first result set is empty we can not build thecolModel, since we can not obtain the columns.
Aded a Oracle driver via the native oci8 PHP http://php.net/manual/en/book.oci8.php