@xuda.io/runtime-bundle 1.0.331 → 1.0.333
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
|
@@ -11563,7 +11563,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11563
11563
|
.filter(function () {
|
|
11564
11564
|
// look if the changed field include in the calling in parameters
|
|
11565
11565
|
let parameter_in_filed_id;
|
|
11566
|
-
const _$callingContainer = this.data()?.xuData?.paramsP?.$callingContainerP;
|
|
11566
|
+
const _$callingContainer = $(this).data()?.xuData?.paramsP?.$callingContainerP;
|
|
11567
11567
|
if (_$callingContainer) {
|
|
11568
11568
|
const _source_xuAttributes = _$callingContainer.data()?.xuAttributes;
|
|
11569
11569
|
if (_source_xuAttributes) {
|
|
@@ -11585,7 +11585,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11585
11585
|
let attr = [];
|
|
11586
11586
|
|
|
11587
11587
|
$.each($(this).data()?.xuAttributes, function (key, val) {
|
|
11588
|
-
if (key.substr(0,
|
|
11588
|
+
if (key.substr(0, 3) !== 'xu-') return true;
|
|
11589
11589
|
|
|
11590
11590
|
if (key === 'xu-for') {
|
|
11591
11591
|
// match static value for xu-for
|
|
@@ -9629,7 +9629,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9629
9629
|
.filter(function () {
|
|
9630
9630
|
// look if the changed field include in the calling in parameters
|
|
9631
9631
|
let parameter_in_filed_id;
|
|
9632
|
-
const _$callingContainer = this.data()?.xuData?.paramsP?.$callingContainerP;
|
|
9632
|
+
const _$callingContainer = $(this).data()?.xuData?.paramsP?.$callingContainerP;
|
|
9633
9633
|
if (_$callingContainer) {
|
|
9634
9634
|
const _source_xuAttributes = _$callingContainer.data()?.xuAttributes;
|
|
9635
9635
|
if (_source_xuAttributes) {
|
|
@@ -9651,7 +9651,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9651
9651
|
let attr = [];
|
|
9652
9652
|
|
|
9653
9653
|
$.each($(this).data()?.xuAttributes, function (key, val) {
|
|
9654
|
-
if (key.substr(0,
|
|
9654
|
+
if (key.substr(0, 3) !== 'xu-') return true;
|
|
9655
9655
|
|
|
9656
9656
|
if (key === 'xu-for') {
|
|
9657
9657
|
// match static value for xu-for
|