@xuda.io/runtime-bundle 1.0.693 → 1.0.694
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
|
@@ -11867,27 +11867,29 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
11867
11867
|
// });
|
|
11868
11868
|
|
|
11869
11869
|
$elm.empty();
|
|
11870
|
-
|
|
11871
|
-
|
|
11872
|
-
|
|
11873
|
-
|
|
11874
|
-
|
|
11875
|
-
|
|
11876
|
-
|
|
11877
|
-
|
|
11878
|
-
|
|
11879
|
-
|
|
11880
|
-
|
|
11881
|
-
|
|
11882
|
-
|
|
11883
|
-
|
|
11870
|
+
if ($elm.data()) {
|
|
11871
|
+
const new_$div = await func.UI.screen.render_ui_tree(
|
|
11872
|
+
SESSION_ID,
|
|
11873
|
+
$elm, // the wrapper
|
|
11874
|
+
_.cloneDeep($elm.data().xuData.node), // the xu-panel node
|
|
11875
|
+
{},
|
|
11876
|
+
elm_data.xuData.paramsP, // the wrapper params
|
|
11877
|
+
null,
|
|
11878
|
+
null,
|
|
11879
|
+
elm_data.xuData.key, // the wrapper key
|
|
11880
|
+
refreshed_ds, // the refreshed_ds
|
|
11881
|
+
elm_data.xuData.parent_node, // the wrapper parent node
|
|
11882
|
+
null,
|
|
11883
|
+
elm_data.xuData.$root_container, // the wrapper root container
|
|
11884
|
+
);
|
|
11884
11885
|
|
|
11885
|
-
|
|
11886
|
-
|
|
11887
|
-
|
|
11888
|
-
|
|
11886
|
+
// // remove old screen content
|
|
11887
|
+
// $.each(elm_to_delete, async function (key, val) {
|
|
11888
|
+
// $("[xu-ui-id='" + elm_to_delete + "']").remove();
|
|
11889
|
+
// });
|
|
11889
11890
|
|
|
11890
|
-
|
|
11891
|
+
return;
|
|
11892
|
+
}
|
|
11891
11893
|
}
|
|
11892
11894
|
}
|
|
11893
11895
|
}
|
|
@@ -9589,27 +9589,29 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
9589
9589
|
// });
|
|
9590
9590
|
|
|
9591
9591
|
$elm.empty();
|
|
9592
|
-
|
|
9593
|
-
|
|
9594
|
-
|
|
9595
|
-
|
|
9596
|
-
|
|
9597
|
-
|
|
9598
|
-
|
|
9599
|
-
|
|
9600
|
-
|
|
9601
|
-
|
|
9602
|
-
|
|
9603
|
-
|
|
9604
|
-
|
|
9605
|
-
|
|
9592
|
+
if ($elm.data()) {
|
|
9593
|
+
const new_$div = await func.UI.screen.render_ui_tree(
|
|
9594
|
+
SESSION_ID,
|
|
9595
|
+
$elm, // the wrapper
|
|
9596
|
+
_.cloneDeep($elm.data().xuData.node), // the xu-panel node
|
|
9597
|
+
{},
|
|
9598
|
+
elm_data.xuData.paramsP, // the wrapper params
|
|
9599
|
+
null,
|
|
9600
|
+
null,
|
|
9601
|
+
elm_data.xuData.key, // the wrapper key
|
|
9602
|
+
refreshed_ds, // the refreshed_ds
|
|
9603
|
+
elm_data.xuData.parent_node, // the wrapper parent node
|
|
9604
|
+
null,
|
|
9605
|
+
elm_data.xuData.$root_container, // the wrapper root container
|
|
9606
|
+
);
|
|
9606
9607
|
|
|
9607
|
-
|
|
9608
|
-
|
|
9609
|
-
|
|
9610
|
-
|
|
9608
|
+
// // remove old screen content
|
|
9609
|
+
// $.each(elm_to_delete, async function (key, val) {
|
|
9610
|
+
// $("[xu-ui-id='" + elm_to_delete + "']").remove();
|
|
9611
|
+
// });
|
|
9611
9612
|
|
|
9612
|
-
|
|
9613
|
+
return;
|
|
9614
|
+
}
|
|
9613
9615
|
}
|
|
9614
9616
|
}
|
|
9615
9617
|
}
|