@xuda.io/runtime-bundle 1.0.1043 → 1.0.1045
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
|
@@ -11778,7 +11778,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11778
11778
|
parent_element_ui_id;
|
|
11779
11779
|
const elem_key = node.xu_render_xu_ui_id;
|
|
11780
11780
|
const elem_val = { attributes: [attr], $elm: node_data.$div };
|
|
11781
|
-
elem_val.$elm.data().xuData.parent_element_ui_id =
|
|
11781
|
+
elem_val.$elm.data().xuData.parent_element_ui_id = $(val).attr('xu-ui-id');
|
|
11782
11782
|
var res = await func.expression.get(SESSION_ID, elem_val.$elm.data().xuAttributes['xu-exp:xu-render'], elem_val.$elm.data().xuData.paramsP.dsSessionP, 'UI Property EXP', elem_val.$elm.data().xuData.recordid);
|
|
11783
11783
|
|
|
11784
11784
|
var attr_value = await func.common.get_cast_val(SESSION_ID, 'refresh xu-attributes', 'xu-render', 'bool', res.result);
|
|
@@ -12695,20 +12695,20 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12695
12695
|
/////////////
|
|
12696
12696
|
// let new_$div = original_data_obj.$container.clone(true);
|
|
12697
12697
|
|
|
12698
|
-
if (
|
|
12698
|
+
if (!new_$div) {
|
|
12699
12699
|
new_$div = await func.UI.screen.render_ui_tree(
|
|
12700
12700
|
SESSION_ID,
|
|
12701
12701
|
$elm, //original_data_obj.$container,
|
|
12702
|
-
|
|
12703
|
-
|
|
12704
|
-
|
|
12702
|
+
nodeP,
|
|
12703
|
+
parent_infoP,
|
|
12704
|
+
paramsP,
|
|
12705
12705
|
jobNoP,
|
|
12706
12706
|
null,
|
|
12707
|
-
|
|
12707
|
+
keyP,
|
|
12708
12708
|
null,
|
|
12709
|
-
|
|
12709
|
+
parent_nodeP,
|
|
12710
12710
|
null,
|
|
12711
|
-
|
|
12711
|
+
$root_container,
|
|
12712
12712
|
);
|
|
12713
12713
|
}
|
|
12714
12714
|
// ////////////
|
|
@@ -9503,7 +9503,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9503
9503
|
parent_element_ui_id;
|
|
9504
9504
|
const elem_key = node.xu_render_xu_ui_id;
|
|
9505
9505
|
const elem_val = { attributes: [attr], $elm: node_data.$div };
|
|
9506
|
-
elem_val.$elm.data().xuData.parent_element_ui_id =
|
|
9506
|
+
elem_val.$elm.data().xuData.parent_element_ui_id = $(val).attr('xu-ui-id');
|
|
9507
9507
|
var res = await func.expression.get(SESSION_ID, elem_val.$elm.data().xuAttributes['xu-exp:xu-render'], elem_val.$elm.data().xuData.paramsP.dsSessionP, 'UI Property EXP', elem_val.$elm.data().xuData.recordid);
|
|
9508
9508
|
|
|
9509
9509
|
var attr_value = await func.common.get_cast_val(SESSION_ID, 'refresh xu-attributes', 'xu-render', 'bool', res.result);
|
|
@@ -10420,20 +10420,20 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10420
10420
|
/////////////
|
|
10421
10421
|
// let new_$div = original_data_obj.$container.clone(true);
|
|
10422
10422
|
|
|
10423
|
-
if (
|
|
10423
|
+
if (!new_$div) {
|
|
10424
10424
|
new_$div = await func.UI.screen.render_ui_tree(
|
|
10425
10425
|
SESSION_ID,
|
|
10426
10426
|
$elm, //original_data_obj.$container,
|
|
10427
|
-
|
|
10428
|
-
|
|
10429
|
-
|
|
10427
|
+
nodeP,
|
|
10428
|
+
parent_infoP,
|
|
10429
|
+
paramsP,
|
|
10430
10430
|
jobNoP,
|
|
10431
10431
|
null,
|
|
10432
|
-
|
|
10432
|
+
keyP,
|
|
10433
10433
|
null,
|
|
10434
|
-
|
|
10434
|
+
parent_nodeP,
|
|
10435
10435
|
null,
|
|
10436
|
-
|
|
10436
|
+
$root_container,
|
|
10437
10437
|
);
|
|
10438
10438
|
}
|
|
10439
10439
|
// ////////////
|