Skip to content

Commit

Permalink
Publishing new release 5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
tonytomov committed Dec 20, 2022
1 parent 30b070e commit 7ced5ee
Showing 8 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion js/grid.base.js
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ if(!$.jgrid.hasOwnProperty("defaults")) {
$.jgrid.defaults = {};
}
$.extend($.jgrid,{
version : "5.7.0",
version : "5.8.0",
isNull : function( p, strict_eq) {
if(strict_eq && strict_eq === true) {
return p === null;
10 changes: 6 additions & 4 deletions js/jquery.jqGrid.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
*
* @license Guriddo jqGrid JS - v5.7.0 - 2022-12-19
* @license Guriddo jqGrid JS - v5.8.0 - 2022-12-20
* Copyright(c) 2008, Tony Tomov, tony@trirand.com
*
* License: http://guriddo.net/?page_id=103334
@@ -24,7 +24,7 @@ if(!$.jgrid.hasOwnProperty("defaults")) {
$.jgrid.defaults = {};
}
$.extend($.jgrid,{
version : "5.7.0",
version : "5.8.0",
isNull : function( p, strict_eq) {
if(strict_eq && strict_eq === true) {
return p === null;
@@ -14531,7 +14531,9 @@ $.jgrid.extend({
//classes = $.jgrid.styleUI[($t.p.styleUI || 'jQueryUI')]['grouping'],
numberOfHeadRows = $thead.children("tr").length;
//base = $.jgrid.styleUI[(ts.p.styleUI || 'jQueryUI')].base;
ts.p.colSpanHeader = o;
if(Array.isArray( o )) {
ts.p.colSpanHeader = o;
}
if($firstHeaderRow[0] === undefined) {
$firstHeaderRow = $('<tr>', {role: "row", "aria-hidden": "true"}).addClass("jqg-first-row-header").css("height", "auto");
} else {
@@ -22706,7 +22708,7 @@ $.jgrid.extend({
}

function transpose( data, o) {
if(!$.isArray(data)) {
if(!Array.isArray(data)) {
//throw "data provides is not an array";
data = [];
}
4 changes: 2 additions & 2 deletions js/jquery.jqGrid.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/jquery.jqGrid.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/minified/grid.base.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/minified/grid.grouping.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/minified/grid.transposed.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
"name": "jqGrid",
"title": "Guriddo jqGrid",
"description": "jqGrid is an Ajax-enabled JavaScript control that provides solutions for representing and manipulating tabular data on the web.",
"version": "5.7.0",
"version": "5.8.0",
"author": {
"name": "Tony Tomov",
"url": "http://www.guriddo.net",

0 comments on commit 7ced5ee

Please sign in to comment.