@xuda.io/runtime-bundle 1.0.668 → 1.0.670
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
|
@@ -11552,6 +11552,13 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11552
11552
|
$.each($(this).data()?.xuAttributes, function (key, val) {
|
|
11553
11553
|
if (key.substr(0, 3) !== 'xu-') return true;
|
|
11554
11554
|
|
|
11555
|
+
if (key === 'xu-bind') {
|
|
11556
|
+
if (val?.includes?.(val_field) || val?.includes?.(parameter_in_filed_id)) {
|
|
11557
|
+
attr.push(key);
|
|
11558
|
+
}
|
|
11559
|
+
return true;
|
|
11560
|
+
}
|
|
11561
|
+
|
|
11555
11562
|
if (key === 'xu-for') {
|
|
11556
11563
|
// match static value for xu-for
|
|
11557
11564
|
if (val?.includes?.(val_field) || val?.includes?.(parameter_in_filed_id)) {
|
|
@@ -9274,6 +9274,13 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9274
9274
|
$.each($(this).data()?.xuAttributes, function (key, val) {
|
|
9275
9275
|
if (key.substr(0, 3) !== 'xu-') return true;
|
|
9276
9276
|
|
|
9277
|
+
if (key === 'xu-bind') {
|
|
9278
|
+
if (val?.includes?.(val_field) || val?.includes?.(parameter_in_filed_id)) {
|
|
9279
|
+
attr.push(key);
|
|
9280
|
+
}
|
|
9281
|
+
return true;
|
|
9282
|
+
}
|
|
9283
|
+
|
|
9277
9284
|
if (key === 'xu-for') {
|
|
9278
9285
|
// match static value for xu-for
|
|
9279
9286
|
if (val?.includes?.(val_field) || val?.includes?.(parameter_in_filed_id)) {
|