Skip to content

Latest commit

 

History

History
79 lines (64 loc) · 9.75 KB

README4.13.2.md

File metadata and controls

79 lines (64 loc) · 9.75 KB

free fork of jqGrid

npm versiondownloadstotal Bower NuGet Maven Central
GitHub commits Image1Image2 GitHub watchersGitHub forksGitHub stars GitHub license

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 mostly by Tony Tomov in the past 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 minor new features and the bug fixes implemented in free jqGrid 4.13.2 (compared with version 4.13.1). 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 PayPayl donate button or by sending money via PayPal to oleg.kiriljuk@ok-soft-gmbh.com 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 cdnjs and jsDelivr CDN. Thus one can use it directly from Internet by including for example the URLs like

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/free-jqgrid/4.13.2/css/ui.jqgrid.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/free-jqgrid/4.13.2/js/i18n/grid.locale-de.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/free-jqgrid/4.13.2/js/jquery.jqgrid.min.js"></script>

or

<link rel="stylesheet" href="https://cdn.jsdelivr.net/free-jqgrid/4.13.2/css/ui.jqgrid.min.css">
<script src="https://cdn.jsdelivr.net/free-jqgrid/4.13.2/js/i18n/grid.locale-de.min.js"></script>
<script src="https://cdn.jsdelivr.net/free-jqgrid/4.13.2/js/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/i18n/grid.locale-de.js"></script>
<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.13.2.

Below one can see the full list of changes in the version 4.13.2 compared with 4.13.1:

  • Bug fix in encodding of attributes inside of predefined formatters (like formatter: "showlink").
  • Making parseFilter safer, It will be used in filterToolbar to restore the values in the filter based on the value of postData.filters.
  • Bug fixes in filterToolbar in case of usage searchOnEnter: true option.
  • Bug fixes in Seaching Dialog: the usage of readonly and disabled attributes defined in editoptions will be not used in Searching Dialog.
  • The value of this, used in afterRedraw and onChange callbacks of the Searching Dialog, is fixed corresponds to the standard behavior of jqGrid.
  • Add more parameters in onChange callback and jqGridFilterAfterChange event.
  • Bug fix in filterToolbar in the wrong usage of name property of colModel instead of index.
  • Add icons on top of README with some statistic and links to NPM, Bower, NuGet and Maven Central.
  • Replace the usage complete to the usage of success & error callbacks inside of legacy/simplitied subgrid module.
  • Add aria-label='Close' to closing icons used in free jqGrid.
  • Some improvmenes in the error div used by Bootstrap. It will be used now alert and alert-danger Bootstrap classes.
  • Bug fix in the usage of jsonmap property of colModel in case of datatype: "jsonstring".
  • Bug fix of missing dependencies used by requireJs for grid.common, grid.treegrid and grid.import.
  • Bug fix in the behavior of the filter toolbar after pressing of Reset buttons of Searching Dialog.
  • Bug fix in removing of trailing spaces from input fileds of the filter toolbar in case of usage searchOnEnter: false mode.
  • More save processing of formatter and return value of some callbacks of cell and form editing mode, which should return arrays like [true] or [false, "error description"]. Old code could produce exceptions if wrong undefined or null value will be returned from the callbacks. After the fix the undefined/null value will be intrpreted as no error ([true]).
  • Use JSON.stringify as the first choice instead of xmlJsonClass.toJson during processing of postData.filters in Searching Dialog.
  • Bug fix in footerData and setLabel for the case of usage frozen columns.

Other readmes contain the list of the features and bug fixed implemented before:

Many thanks to all, who sent bug reports and suggestions to improve free jqGrid!