jqgrid_utils 1.35.1 → 1.35.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.
- package/dist/jqgrid_utils.js +1 -2
- package/jqgrid_utils.js +1 -2
- package/package.json +1 -1
package/dist/jqgrid_utils.js
CHANGED
|
@@ -179,7 +179,6 @@ var jqu = new Jqgrid_utils({page:page});
|
|
|
179
179
|
try {
|
|
180
180
|
const doc = new DOMParser().parseFromString(str, "text/html");
|
|
181
181
|
const a = Array.from(doc.body.childNodes).some((n) => n.nodeType === 1);
|
|
182
|
-
console.log(a);
|
|
183
182
|
if (a) {
|
|
184
183
|
r = true;
|
|
185
184
|
}
|
|
@@ -461,7 +460,7 @@ var jqu = new Jqgrid_utils({page:page});
|
|
|
461
460
|
Object.keys(row).length > 0 &&
|
|
462
461
|
row.inputData.oper == "add"
|
|
463
462
|
) {
|
|
464
|
-
console.log("...add");
|
|
463
|
+
//console.log("...add");
|
|
465
464
|
for (let i in row.inputData) {
|
|
466
465
|
if (row.inputData[i] && i != "id" && i != "oper") {
|
|
467
466
|
values[i] = row.inputData[i];
|
package/jqgrid_utils.js
CHANGED
|
@@ -178,7 +178,6 @@ var jqu = new Jqgrid_utils({page:page});
|
|
|
178
178
|
try {
|
|
179
179
|
const doc = new DOMParser().parseFromString(str, "text/html");
|
|
180
180
|
const a = Array.from(doc.body.childNodes).some((n) => n.nodeType === 1);
|
|
181
|
-
console.log(a);
|
|
182
181
|
if (a) {
|
|
183
182
|
r = true;
|
|
184
183
|
}
|
|
@@ -460,7 +459,7 @@ var jqu = new Jqgrid_utils({page:page});
|
|
|
460
459
|
Object.keys(row).length > 0 &&
|
|
461
460
|
row.inputData.oper == "add"
|
|
462
461
|
) {
|
|
463
|
-
console.log("...add");
|
|
462
|
+
//console.log("...add");
|
|
464
463
|
for (let i in row.inputData) {
|
|
465
464
|
if (row.inputData[i] && i != "id" && i != "oper") {
|
|
466
465
|
values[i] = row.inputData[i];
|