jqgrid_utils 1.5.1 → 1.5.2

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.
@@ -117,6 +117,7 @@ console.log(_data);
117
117
  {
118
118
  col_model[i]['formatter'] = function (cell_value, o)
119
119
  {
120
+ cell_value = cell_value.toString();
120
121
  let value = cell_value;
121
122
  if(cell_value.length >= 8 && cell_value.indexOf(seperator) === -1)
122
123
  {
package/jqgrid_utils.js CHANGED
@@ -116,6 +116,7 @@ console.log(_data);
116
116
  {
117
117
  col_model[i]['formatter'] = function (cell_value, o)
118
118
  {
119
+ cell_value = cell_value.toString();
119
120
  let value = cell_value;
120
121
  if(cell_value.length >= 8 && cell_value.indexOf(seperator) === -1)
121
122
  {
package/package.json CHANGED
@@ -29,5 +29,5 @@
29
29
  {
30
30
  "test": "echo \"Error: no test specified\" && exit 1"
31
31
  },
32
- "version": "1.5.1"
32
+ "version": "1.5.2"
33
33
  }