@xuda.io/runtime-bundle 1.0.971 → 1.0.973
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/js/xuda-runtime-slim.js
CHANGED
|
@@ -8540,6 +8540,7 @@ func.UI.worker.add_to_queue = async function (SESSION_ID, source, functionP, par
|
|
|
8540
8540
|
return;
|
|
8541
8541
|
}
|
|
8542
8542
|
}
|
|
8543
|
+
calling_job = false;
|
|
8543
8544
|
if (calling_job) {
|
|
8544
8545
|
var job_index = func.UI.worker.find_job_index(SESSION_ID, calling_job);
|
|
8545
8546
|
|
|
@@ -11620,11 +11621,11 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11620
11621
|
performed_render = true;
|
|
11621
11622
|
|
|
11622
11623
|
// mark children items ignore list
|
|
11623
|
-
|
|
11624
|
-
|
|
11625
|
-
|
|
11626
|
-
|
|
11627
|
-
|
|
11624
|
+
$.each(elem_val.$elm.find('*'), function (key, val) {
|
|
11625
|
+
if ($(val).data().xuData) {
|
|
11626
|
+
$(val).data().xuData.pending_to_delete = true;
|
|
11627
|
+
}
|
|
11628
|
+
});
|
|
11628
11629
|
|
|
11629
11630
|
if (glb.DEBUG_MODE) {
|
|
11630
11631
|
console.info('execute_xu_render_attributes', obj);
|
|
@@ -8541,6 +8541,7 @@ func.UI.worker.add_to_queue = async function (SESSION_ID, source, functionP, par
|
|
|
8541
8541
|
return;
|
|
8542
8542
|
}
|
|
8543
8543
|
}
|
|
8544
|
+
calling_job = false;
|
|
8544
8545
|
if (calling_job) {
|
|
8545
8546
|
var job_index = func.UI.worker.find_job_index(SESSION_ID, calling_job);
|
|
8546
8547
|
|
|
@@ -9347,11 +9348,11 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9347
9348
|
performed_render = true;
|
|
9348
9349
|
|
|
9349
9350
|
// mark children items ignore list
|
|
9350
|
-
|
|
9351
|
-
|
|
9352
|
-
|
|
9353
|
-
|
|
9354
|
-
|
|
9351
|
+
$.each(elem_val.$elm.find('*'), function (key, val) {
|
|
9352
|
+
if ($(val).data().xuData) {
|
|
9353
|
+
$(val).data().xuData.pending_to_delete = true;
|
|
9354
|
+
}
|
|
9355
|
+
});
|
|
9355
9356
|
|
|
9356
9357
|
if (glb.DEBUG_MODE) {
|
|
9357
9358
|
console.info('execute_xu_render_attributes', obj);
|