@xuda.io/runtime-bundle 1.0.971 → 1.0.972
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
|
@@ -11469,7 +11469,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11469
11469
|
const elm_data = $(this).data();
|
|
11470
11470
|
if (!elm_data.xuData) return true;
|
|
11471
11471
|
|
|
11472
|
-
if (typeof dsSession_changed !== 'undefined' && elm_data.xuData.paramsP && elm_data.xuData.paramsP.dsSessionP < dsSession_changed) return true;
|
|
11472
|
+
// if (typeof dsSession_changed !== 'undefined' && elm_data.xuData.paramsP && elm_data.xuData.paramsP.dsSessionP < dsSession_changed) return true;
|
|
11473
11473
|
|
|
11474
11474
|
let attr = [];
|
|
11475
11475
|
|
|
@@ -11620,11 +11620,11 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11620
11620
|
performed_render = true;
|
|
11621
11621
|
|
|
11622
11622
|
// mark children items ignore list
|
|
11623
|
-
|
|
11624
|
-
|
|
11625
|
-
|
|
11626
|
-
|
|
11627
|
-
|
|
11623
|
+
$.each(elem_val.$elm.find('*'), function (key, val) {
|
|
11624
|
+
if ($(val).data().xuData) {
|
|
11625
|
+
$(val).data().xuData.pending_to_delete = true;
|
|
11626
|
+
}
|
|
11627
|
+
});
|
|
11628
11628
|
|
|
11629
11629
|
if (glb.DEBUG_MODE) {
|
|
11630
11630
|
console.info('execute_xu_render_attributes', obj);
|
|
@@ -9196,7 +9196,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9196
9196
|
const elm_data = $(this).data();
|
|
9197
9197
|
if (!elm_data.xuData) return true;
|
|
9198
9198
|
|
|
9199
|
-
if (typeof dsSession_changed !== 'undefined' && elm_data.xuData.paramsP && elm_data.xuData.paramsP.dsSessionP < dsSession_changed) return true;
|
|
9199
|
+
// if (typeof dsSession_changed !== 'undefined' && elm_data.xuData.paramsP && elm_data.xuData.paramsP.dsSessionP < dsSession_changed) return true;
|
|
9200
9200
|
|
|
9201
9201
|
let attr = [];
|
|
9202
9202
|
|
|
@@ -9347,11 +9347,11 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9347
9347
|
performed_render = true;
|
|
9348
9348
|
|
|
9349
9349
|
// mark children items ignore list
|
|
9350
|
-
|
|
9351
|
-
|
|
9352
|
-
|
|
9353
|
-
|
|
9354
|
-
|
|
9350
|
+
$.each(elem_val.$elm.find('*'), function (key, val) {
|
|
9351
|
+
if ($(val).data().xuData) {
|
|
9352
|
+
$(val).data().xuData.pending_to_delete = true;
|
|
9353
|
+
}
|
|
9354
|
+
});
|
|
9355
9355
|
|
|
9356
9356
|
if (glb.DEBUG_MODE) {
|
|
9357
9357
|
console.info('execute_xu_render_attributes', obj);
|