@xuda.io/runtime-bundle 1.0.685 → 1.0.687
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
|
@@ -11847,23 +11847,24 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
11847
11847
|
validate_change(prog_doc);
|
|
11848
11848
|
if (found) {
|
|
11849
11849
|
const $elm = $('#container_5b1_cmp_3700419d8179_0');
|
|
11850
|
+
const elm_data = $elm.data();
|
|
11850
11851
|
const $wrapper = $elm.parent();
|
|
11851
11852
|
const wrapper_data = $wrapper.data();
|
|
11852
11853
|
const refreshed_ds = _ds.dsSession;
|
|
11853
11854
|
$elm.empty();
|
|
11854
11855
|
const new_$div = await func.UI.screen.render_ui_tree(
|
|
11855
11856
|
SESSION_ID,
|
|
11856
|
-
$
|
|
11857
|
+
$elm, // the wrapper
|
|
11857
11858
|
_.cloneDeep($elm.data().xuData.node), // the xu-panel node
|
|
11858
11859
|
{},
|
|
11859
|
-
|
|
11860
|
+
elm_data.xuData.paramsP, // the wrapper params
|
|
11860
11861
|
null,
|
|
11861
11862
|
null,
|
|
11862
|
-
|
|
11863
|
+
elm_data.xuData.key, // the wrapper key
|
|
11863
11864
|
refreshed_ds, // the refreshed_ds
|
|
11864
|
-
|
|
11865
|
+
elm_data.xuData.parent_node, // the wrapper parent node
|
|
11865
11866
|
null,
|
|
11866
|
-
|
|
11867
|
+
elm_data.xuData.$root_container, // the wrapper root container
|
|
11867
11868
|
);
|
|
11868
11869
|
|
|
11869
11870
|
return;
|
|
@@ -9569,23 +9569,24 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
9569
9569
|
validate_change(prog_doc);
|
|
9570
9570
|
if (found) {
|
|
9571
9571
|
const $elm = $('#container_5b1_cmp_3700419d8179_0');
|
|
9572
|
+
const elm_data = $elm.data();
|
|
9572
9573
|
const $wrapper = $elm.parent();
|
|
9573
9574
|
const wrapper_data = $wrapper.data();
|
|
9574
9575
|
const refreshed_ds = _ds.dsSession;
|
|
9575
9576
|
$elm.empty();
|
|
9576
9577
|
const new_$div = await func.UI.screen.render_ui_tree(
|
|
9577
9578
|
SESSION_ID,
|
|
9578
|
-
$
|
|
9579
|
+
$elm, // the wrapper
|
|
9579
9580
|
_.cloneDeep($elm.data().xuData.node), // the xu-panel node
|
|
9580
9581
|
{},
|
|
9581
|
-
|
|
9582
|
+
elm_data.xuData.paramsP, // the wrapper params
|
|
9582
9583
|
null,
|
|
9583
9584
|
null,
|
|
9584
|
-
|
|
9585
|
+
elm_data.xuData.key, // the wrapper key
|
|
9585
9586
|
refreshed_ds, // the refreshed_ds
|
|
9586
|
-
|
|
9587
|
+
elm_data.xuData.parent_node, // the wrapper parent node
|
|
9587
9588
|
null,
|
|
9588
|
-
|
|
9589
|
+
elm_data.xuData.$root_container, // the wrapper root container
|
|
9589
9590
|
);
|
|
9590
9591
|
|
|
9591
9592
|
return;
|