Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how do i know what version of jqgrid i am using

Tags:

jqgrid

i have a asp.net project and its using jqgrid as the javascript grid. How can i find out what version of jqgrid is being used?

like image 355
leora Avatar asked Jun 01 '10 22:06

leora


2 Answers

If you need to query the version programmatically you can use:

$.jgrid.version

Example:

alert($.jgrid.**version**);                                   
like image 163
Jelgab Avatar answered Jan 01 '23 08:01

Jelgab


have you tried opening up the file jquery.jqGrid.min.js and looking at the first line of comments?

Mine says;

/* 
* jqGrid  3.5.1 - jQuery Grid 
like image 21
griegs Avatar answered Jan 01 '23 09:01

griegs