@ntlab/ntjs-assets 2.0.26 → 2.0.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -157,7 +157,7 @@
157
157
  "cdnjs": "blueimp-JavaScript-Templates"
158
158
  },
159
159
  "jqGrid": {
160
- "version": "5.8.7",
160
+ "version": "5.8.8",
161
161
  "cdnjs": "jqgrid"
162
162
  },
163
163
  "jquery": {
@@ -405,7 +405,8 @@ div.tablediv > .table-bordered {
405
405
  .ui-jqgrid .ui-jqgrid-toppager .ui-pg-input {
406
406
  display: inline-block;
407
407
  height:auto;
408
- width: 50px;
408
+ width: auto;
409
+ max-width: 50px;
409
410
  font-size: inherit;
410
411
  margin:0;
411
412
  line-height: inherit;
@@ -1318,5 +1319,8 @@ a.colmenu .colmenuspan
1318
1319
  overflow: auto;
1319
1320
  height: 17em;
1320
1321
  }
1322
+ .frozen-bdiv [class*="ghead_"] td {
1323
+ overflow-x: hidden;
1324
+ }
1321
1325
  /*uncomment this if you use ie11*/
1322
1326
  /* <script>window.MSInputMethodContext && document.documentMode && document.write('<script src="https://cdn.jsdelivr.net/gh/nuxodin/ie11CustomProperties@4.1.0/ie11CustomProperties.min.js"><\/script>');</script>*/
@@ -19,7 +19,7 @@ if(!$.jgrid.hasOwnProperty("defaults")) {
19
19
  $.jgrid.defaults = {};
20
20
  }
21
21
  $.extend($.jgrid,{
22
- version : "5.8.7",
22
+ version : "5.8.8",
23
23
  isNull : function( p, strict_eq) {
24
24
  if(strict_eq && strict_eq === true) {
25
25
  return p === null;
@@ -4065,10 +4065,12 @@ $.fn.jqGrid = function( pin ) {
4065
4065
  prm[pN.sort] = gs;
4066
4066
  prm[pN.order] = "";
4067
4067
  }
4068
+ /*
4068
4069
  if(ts.p.datatype==='local' && !grp._locgr) {
4069
4070
  ts.p.datatype = 'jsonstring';
4070
4071
  ts.p.datastr = ts.p.data;
4071
4072
  }
4073
+ */
4072
4074
  }
4073
4075
  $.extend(ts.p.postData,prm);
4074
4076
  var rcnt = !ts.p.scroll ? 1 : ts.rows.length-1;
@@ -4161,10 +4163,12 @@ $.fn.jqGrid = function( pin ) {
4161
4163
  return;
4162
4164
  }
4163
4165
  addJSONData(dstr);
4166
+ /*
4164
4167
  if(ts.p.grouping && ts.p.groupingView._locgr) {
4165
4168
  // back to original data???
4166
4169
  ts.p.data = dstr;
4167
4170
  }
4171
+ */
4168
4172
  afterprocess(dstr, lcf);
4169
4173
  break;
4170
4174
  case "local":
@@ -4670,6 +4674,9 @@ $.fn.jqGrid = function( pin ) {
4670
4674
  if(ts.p.tblwidth > ts.p.width) {
4671
4675
  ts.p.colModel[lvc].width -= (ts.p.tblwidth - parseInt(ts.p.width,10));
4672
4676
  ts.p.tblwidth = ts.p.width;
4677
+ } else if(!hs && ts.p.tblwidth === ts.p.width) {
4678
+ ts.p.colModel[lvc].width -= bstw;
4679
+ ts.p.tblwidth -= bstw;
4673
4680
  }
4674
4681
  }
4675
4682
  },
@@ -1857,15 +1857,15 @@ $.jgrid.extend({
1857
1857
  }
1858
1858
  var alert_info = function(){
1859
1859
  $.jgrid.info_dialog(o.alertcap,"<div>"+o.alerttext+"</div><span tabindex='0'><span tabindex='-1' id='jqg_alrt'></span></span>","",{
1860
- jqModal:true,
1861
- drag:true,
1862
- resize:true,
1863
- caption:o.alertcap,
1860
+ jqModal:true,
1861
+ drag:true,
1862
+ resize:true,
1863
+ caption:o.alertcap,
1864
1864
  width:o.alertwidth,
1865
1865
  height: o.alertheight,
1866
- top:o.alerttop,
1867
- left:o.alertleft,
1868
- closeOnEscape:o.closeOnEscape,
1866
+ top:o.alerttop,
1867
+ left:o.alertleft,
1868
+ closeOnEscape:o.closeOnEscape,
1869
1869
  styleUI: $t.p.styleUI,
1870
1870
  zIndex: o.alertzIndex}
1871
1871
  );
@@ -214,7 +214,7 @@ $.jgrid.extend({
214
214
  }
215
215
  footLevel = parseInt($(r).attr("jqfootlevel") ,10);
216
216
  skip = isNaN(footLevel) ? false :
217
- (grp.showSummaryOnHide && footLevel >= num);
217
+ (grp.showSummaryOnHide && footLevel <= num);
218
218
  if( !skip) {
219
219
  $(r).hide();
220
220
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  *
3
- * @license Guriddo jqGrid JS - v5.8.7 - 2024-06-01
3
+ * @license Guriddo jqGrid JS - v5.8.8 - 2024-06-28
4
4
  * Copyright(c) 2008, Tony Tomov, tony@trirand.com
5
5
  *
6
6
  * License: http://guriddo.net/?page_id=103334
@@ -24,7 +24,7 @@ if(!$.jgrid.hasOwnProperty("defaults")) {
24
24
  $.jgrid.defaults = {};
25
25
  }
26
26
  $.extend($.jgrid,{
27
- version : "5.8.7",
27
+ version : "5.8.8",
28
28
  isNull : function( p, strict_eq) {
29
29
  if(strict_eq && strict_eq === true) {
30
30
  return p === null;
@@ -4070,10 +4070,12 @@ $.fn.jqGrid = function( pin ) {
4070
4070
  prm[pN.sort] = gs;
4071
4071
  prm[pN.order] = "";
4072
4072
  }
4073
+ /*
4073
4074
  if(ts.p.datatype==='local' && !grp._locgr) {
4074
4075
  ts.p.datatype = 'jsonstring';
4075
4076
  ts.p.datastr = ts.p.data;
4076
4077
  }
4078
+ */
4077
4079
  }
4078
4080
  $.extend(ts.p.postData,prm);
4079
4081
  var rcnt = !ts.p.scroll ? 1 : ts.rows.length-1;
@@ -4166,10 +4168,12 @@ $.fn.jqGrid = function( pin ) {
4166
4168
  return;
4167
4169
  }
4168
4170
  addJSONData(dstr);
4171
+ /*
4169
4172
  if(ts.p.grouping && ts.p.groupingView._locgr) {
4170
4173
  // back to original data???
4171
4174
  ts.p.data = dstr;
4172
4175
  }
4176
+ */
4173
4177
  afterprocess(dstr, lcf);
4174
4178
  break;
4175
4179
  case "local":
@@ -4675,6 +4679,9 @@ $.fn.jqGrid = function( pin ) {
4675
4679
  if(ts.p.tblwidth > ts.p.width) {
4676
4680
  ts.p.colModel[lvc].width -= (ts.p.tblwidth - parseInt(ts.p.width,10));
4677
4681
  ts.p.tblwidth = ts.p.width;
4682
+ } else if(!hs && ts.p.tblwidth === ts.p.width) {
4683
+ ts.p.colModel[lvc].width -= bstw;
4684
+ ts.p.tblwidth -= bstw;
4678
4685
  }
4679
4686
  }
4680
4687
  },
@@ -13989,15 +13996,15 @@ $.jgrid.extend({
13989
13996
  }
13990
13997
  var alert_info = function(){
13991
13998
  $.jgrid.info_dialog(o.alertcap,"<div>"+o.alerttext+"</div><span tabindex='0'><span tabindex='-1' id='jqg_alrt'></span></span>","",{
13992
- jqModal:true,
13993
- drag:true,
13994
- resize:true,
13995
- caption:o.alertcap,
13999
+ jqModal:true,
14000
+ drag:true,
14001
+ resize:true,
14002
+ caption:o.alertcap,
13996
14003
  width:o.alertwidth,
13997
14004
  height: o.alertheight,
13998
- top:o.alerttop,
13999
- left:o.alertleft,
14000
- closeOnEscape:o.closeOnEscape,
14005
+ top:o.alerttop,
14006
+ left:o.alertleft,
14007
+ closeOnEscape:o.closeOnEscape,
14001
14008
  styleUI: $t.p.styleUI,
14002
14009
  zIndex: o.alertzIndex}
14003
14010
  );
@@ -14803,7 +14810,7 @@ $.jgrid.extend({
14803
14810
  }
14804
14811
  footLevel = parseInt($(r).attr("jqfootlevel") ,10);
14805
14812
  skip = isNaN(footLevel) ? false :
14806
- (grp.showSummaryOnHide && footLevel >= num);
14813
+ (grp.showSummaryOnHide && footLevel <= num);
14807
14814
  if( !skip) {
14808
14815
  $(r).hide();
14809
14816
  }