@xuda.io/runtime-bundle 1.0.944 → 1.0.945
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
|
@@ -11355,6 +11355,9 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11355
11355
|
.filter(function () {
|
|
11356
11356
|
// check if the changed field include in the calling in parameters
|
|
11357
11357
|
const elm_data = $(this).data();
|
|
11358
|
+
if (!elm_data.xuData) return true;
|
|
11359
|
+
|
|
11360
|
+
if (typeof dsSession_changed !== 'undefined' && elm_data.xuData.paramsP.dsSessionP < dsSession_changed) return true;
|
|
11358
11361
|
|
|
11359
11362
|
let attr = [];
|
|
11360
11363
|
|
|
@@ -9082,6 +9082,9 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9082
9082
|
.filter(function () {
|
|
9083
9083
|
// check if the changed field include in the calling in parameters
|
|
9084
9084
|
const elm_data = $(this).data();
|
|
9085
|
+
if (!elm_data.xuData) return true;
|
|
9086
|
+
|
|
9087
|
+
if (typeof dsSession_changed !== 'undefined' && elm_data.xuData.paramsP.dsSessionP < dsSession_changed) return true;
|
|
9085
9088
|
|
|
9086
9089
|
let attr = [];
|
|
9087
9090
|
|