views:

30

answers:

2

I download Craig Stunz's demo application from his blog and want to update it to the latest version of jQuery jqGrid but don't know how to get the current version in the source code. Please help!

A: 

Not sure about that, but I know that in the head section of the page you have jQuery UI script tag with the version (1.8.1 is the latest i think). I suppose that by this version you can judge which version of the jqGrid is included in the UI package.

Dick Lampard
+3  A: 

In the file grid.base.js you can see the following...

 /*
 * jqGrid  3.5 alfa 2 - jQuery Grid
 * Copyright (c) 2008, Tony Tomov, [email protected]
 * Dual licensed under the MIT and GPL licenses
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Date: 2009-04-02 rev 89
 */

So it looks to be v3.5

Sam