@xuda.io/runtime-bundle 1.0.881 → 1.0.883
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-bundle.js +11 -6
- package/js/xuda-runtime-bundle.min.js +2 -2
- package/js/xuda-runtime-slim.js +11 -6
- package/js/xuda-runtime-slim.min.es.js +11 -6
- package/js/xuda-runtime-slim.min.js +2 -2
- package/js/xuda-server-bundle.min.mjs +2 -2
- package/js/xuda-server-bundle.mjs +4 -3
- package/js/xuda-worker-bundle.js +4 -3
- package/js/xuda-worker-bundle.min.js +2 -2
- package/package.json +1 -1
|
@@ -28262,6 +28262,7 @@ func.datasource.prepare = async function (SESSION_ID, prog_id, dataSourceNoP, pa
|
|
|
28262
28262
|
prog_id: prog_id,
|
|
28263
28263
|
dsSession: dataSourceSession,
|
|
28264
28264
|
fieldId: fieldIdP,
|
|
28265
|
+
parentDataSourceNoP,
|
|
28265
28266
|
};
|
|
28266
28267
|
return ret;
|
|
28267
28268
|
};
|
|
@@ -33231,10 +33232,14 @@ func.UI.screen.execute_screen_ready_events = async function (SESSION_ID, paramsP
|
|
|
33231
33232
|
}
|
|
33232
33233
|
return viewEventExec_arr.length;
|
|
33233
33234
|
};
|
|
33235
|
+
try {
|
|
33236
|
+
let count = await get_view_events_count('screen_ready');
|
|
33234
33237
|
|
|
33235
|
-
|
|
33236
|
-
|
|
33237
|
-
|
|
33238
|
+
if (!count) return;
|
|
33239
|
+
return await execute_view_events(sourceP);
|
|
33240
|
+
} catch (error) {
|
|
33241
|
+
debugger;
|
|
33242
|
+
}
|
|
33238
33243
|
};
|
|
33239
33244
|
func.UI.screen.screen_loading_done = async function (SESSION_ID, paramsP, $div, jobNoP) {
|
|
33240
33245
|
// await
|
|
@@ -36756,9 +36761,9 @@ func.events.execute = async function (
|
|
|
36756
36761
|
await func.datasource.update(SESSION_ID, datasource_changes);
|
|
36757
36762
|
|
|
36758
36763
|
if (_ds.PARAM_OUT_INFO) {
|
|
36759
|
-
for await (const [dsSession_to_update, val] of Object.entries(datasource_changes)) {
|
|
36760
|
-
|
|
36761
|
-
}
|
|
36764
|
+
// for await (const [dsSession_to_update, val] of Object.entries(datasource_changes)) {
|
|
36765
|
+
await func.datasource.update_changes_for_out_parameter(SESSION_ID, _ds.dsSession, _ds.PARAM_OUT_INFO.parentDataSourceNo);
|
|
36766
|
+
// }
|
|
36762
36767
|
}
|
|
36763
36768
|
|
|
36764
36769
|
if (jobNoP) func.events.delete_job(SESSION_ID, jobNoP);
|