jqGrid is a popular jQuery Plugin for displaying and editing data in tabular form. It has some other more sophisticated features, like subgrids, TreeGrids, grouping and so on.
jqGrid was developed originally by Tony Tomov and it was available under MIT/GPL-licenses till the version 4.7.0 published Dec 8, 2014 (see here). Short time after that the license agreement was changed (see here) and new 4.7.1 version was published.
The code from the GitHib repository is the fork of jqGrid 4.7.0 - the latest version available under MIT/GPL-licenses. It will be provided under MIT/GPL-licenses.
Below you can find short description of new features and the bug fixes implemented in free jqGrid 4.14.1 (compared with version 4.14.0). The version is developed by Oleg Kiriljuk, alias Oleg on the stackoverflow and OlegK on trirand forum.
Read Wiki for more detailed information about the features of free-jqGrid. The preliminary version of the documentation can be found here.
Free jqGrid can be used for free. We still ask to contribute the development by donating via PayPal, if one have the possibility for it. One can donate by clicking on the following button or by sending money via PayPal to [email protected] with the comment "free jqGrid". Bank transfer based on the invoice from OK soft GmbH is another option of donating. Just send the email with the information about the amount of donation and you will get the corresponding invoice with the full information about our bank account and our VAT number.
One can install the package with respect of npm by using "npm install free-jqgrid", with respect of bower by using "bower install free-jqgrid" or from NuGet by using "Install-Package free-jqGrid".
The package is published on WebJars too and it's deployed to Maven Central.
Free jqGrid is is available from jsDelivr CDN and cdnjs. Thus one can use it directly from Internet by including for example the URLs like
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/ui.jqgrid.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/js/jquery.jqgrid.min.js"></script>or
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/free-jqgrid/4.14.1/css/ui.jqgrid.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/free-jqgrid/4.14.1/jquery.jqgrid.min.js"></script>The locale file is optional. One can, but one don't need to include grid.locale-en.min.js, because the same information is already included in the jquery.jqgrid.min.js (or jquery.jqgrid.src.js).
If somebody want to test the latest version of free jqGrid, one can load it directly from GitHib using RawGit service:
<link rel="stylesheet" href="https://rawgit.com/free-jqgrid/jqGrid/master/css/ui.jqgrid.css">
<script src="https://rawgit.com/free-jqgrid/jqGrid/master/js/jquery.jqgrid.src.js"></script>All other language files and plugins are available from CDN too. See the wiki article for more details about the usage of free jqGrid from CDNs and RawGit.
Remark: the above URLs will be available after publishing the release of the version of 4.14.1.
- Add support of
generateDatalist:trueinsearchoptionsand new methodgenerateDatalistFromColumnIndex. The optiongenerateDatalist: truecan be added tosearchoptionsof the column, which hascreateColumnIndex: true. It generates<datalist>with unique values of the column. As the result, one gets the feature close to Autocomplete using only built-in functionality of HTML5. The demo https://jsfiddle.net/OlegKi/su7ebs65/ shows the usage of the feature. The demo is close to the demo https://jsfiddle.net/OlegKi/yvbt6w54/ from the README to the version 4.14.0, but it uses no jQuery UI Autocomplete. - Performance improvement in
$.jgrid.isCellClassHiddenmethod. See the issue for more details. - Allow to use callback functions as the value of Boolean properties of
editrules. - Initialize
thisand add the options forjsonmap/xmlmapdefined as functions. Add secondoptionsparameter with two properties:cmNameandiItem. - Add
filtersproperty ofprmNamesandsearching.sFilterallows to change the name of postData properties used for filtering. - Add
Eventparameter toonSortColcallback andjqGridSortColevent. See the issue for more details.
- Bug fix in
sortDatain case of usage reload parameter set totrue. The methodsortDatabe used for example inside of the methodsortGrid. - Allow to use callback functions as the value of Boolean properties of
editrules. - Add
Eventparameter toonSortColcallback andjqGridSortColevent. See the issue for more details. - Add support of
generateDatalist:trueinsearchoptionsand new methodgenerateDatalistFromColumnIndex. The optiongenerateDatalist: truecan be added tosearchoptionsof the column, which hascreateColumnIndex: true. It generates<datalist>with unique values of the column. As the result, one gets the feature close to Autocomplete using only built-in functionality of HTML5. - Performance improvement in
$.jgrid.isCellClassHiddenmethod. See the issue for more details. - Bug fix in the name of the subgrid open icon in jQuery UI
iconSet. The typing error in the class name is fixed. - Fill
savedRowafterbeforeEditCell. See the issue for more details. - Initialize
dataproperty of events called bydataEvents. - Small bug fixes in the usage of of
additionalPropertiesandiPropByName. - Fix processing of IN operation and multiselect in Searching Dialog. See the answer for more details.
- Add
filtersproperty ofprmNamesandsearching.sFilterallows to change the name of postData properties used for filtering. - Extension of
filterToolbar: addname,cmandidproperties ofoptionsparameter ofdataInit. - Add
optionsas the second parameter ofeditoptions.defaultValuecallback function. - Bug fix: prevent possible recursion in
getCellandgetRowDatamethods ifeditableproperty is a function, which calls the methods. NeweditingInfoparameter of jqGrid is introduced. The method$.jgrid.detectRowEditingis simplified to mostly one line of code, which useseditingInfo. See the issue for more details. - Bug fix in
addRowDatain case of data grouping is enabled. See the issue for more details. - Bug fix the bug in
parseDatein processing of negative time offsets relative to UTC (processing the ISO date withZformatter). - Bug fix of deleting previously created pager (
pager: true). See the issue for more details. - Changes in Croatian locale, adding Bosnian Translation. See the issue for more details.
- Bug fix: reset of custom filtering operation after clear (click on
xbutton) in the filter toolbar. See the question for additional information. - Initialize
thisand add the options forjsonmap/xmlmapdefined as functions. Add secondoptionsparameter with two properties:cmNameandiItem. - Bug fix: add support of
u1000format of date asnewformatofparseDate. - Bug fix in
editGridRow(form editing): set focus only on the first focusable element.
Other old readmes contain the list of the features and bug fixed implemented in previous versions of free jqGrid:
- README4.14.0.md contains the readme of free jqGrid 4.14.0.
- README4.13.6.md contains the readme of free jqGrid 4.13.6.
- README4.13.5.md contains the readme of free jqGrid 4.13.5.
- README4.13.4.md contains the readme of free jqGrid 4.13.4.
- README4.13.3.md contains the readme of free jqGrid 4.13.3.
- README4.13.2.md contains the readme of free jqGrid 4.13.2.
- README4.13.1.md contains the readme of free jqGrid 4.13.1.
- README4.13.0.md contains the readme of free jqGrid 4.13.0.
- README4.12.1.md contains the readme of free jqGrid 4.12.1.
- README4.12.0.md contains the readme of free jqGrid 4.12.0.
- README4.11.1.md contains the readme of free jqGrid 4.11.1.
- README4.11.0.md contains the readme of free jqGrid 4.11.0.
- README4.10.0.md contains the readme of free jqGrid 4.10.0.
- README492.md contains the readme of free jqGrid 4.9.2.
- README491.md contains the readme of free jqGrid 4.9.1.
- README49.md contains the readme of free jqGrid 4.9.0.
- README48.md contains the readme of free jqGrid 4.8.0.
Many thanks to all, who sent bug reports and suggestions to improve free jqGrid!