@xuda.io/runtime-bundle 1.0.485 → 1.0.487
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 +18 -2
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +18 -2
- package/js/xuda-runtime-slim.min.es.js +18 -2
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +1 -1
- package/js/xuda-worker-bundle.js +1 -1
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -3215,7 +3215,7 @@ glb.solid_attributes = ['disabled'];
|
|
|
3215
3215
|
func.datasource.create = async function (
|
|
3216
3216
|
SESSION_ID,
|
|
3217
3217
|
prog_id,
|
|
3218
|
-
dataSourceNoP, // if exist then refresh
|
|
3218
|
+
dataSourceNoP = null, // if exist then refresh
|
|
3219
3219
|
parentDataSourceNoP,
|
|
3220
3220
|
containerIdP,
|
|
3221
3221
|
rowIdP,
|
|
@@ -11400,7 +11400,23 @@ func.UI.screen.init = async function (SESSION_ID, prog_id, sourceScreenP, callin
|
|
|
11400
11400
|
// console.log("***");
|
|
11401
11401
|
func.UI.utils.indicator.screen.busy();
|
|
11402
11402
|
|
|
11403
|
-
const ret = await func.datasource.create(
|
|
11403
|
+
const ret = await func.datasource.create(
|
|
11404
|
+
SESSION_ID,
|
|
11405
|
+
prog_id,
|
|
11406
|
+
null, //params?.callingDataSource_objP?.dsSession
|
|
11407
|
+
params.parentDataSourceNoP,
|
|
11408
|
+
$rootFrame.attr('id'),
|
|
11409
|
+
rowIdP,
|
|
11410
|
+
jobNoP,
|
|
11411
|
+
null,
|
|
11412
|
+
null,
|
|
11413
|
+
null,
|
|
11414
|
+
null,
|
|
11415
|
+
null,
|
|
11416
|
+
null,
|
|
11417
|
+
null,
|
|
11418
|
+
parameters_obj_inP,
|
|
11419
|
+
);
|
|
11404
11420
|
|
|
11405
11421
|
var _ds = SESSION_OBJ[SESSION_ID].DS_GLB[ret.dsSessionP];
|
|
11406
11422
|
_ds.screen_params = params;
|
|
@@ -3216,7 +3216,7 @@ glb.solid_attributes = ['disabled'];
|
|
|
3216
3216
|
func.datasource.create = async function (
|
|
3217
3217
|
SESSION_ID,
|
|
3218
3218
|
prog_id,
|
|
3219
|
-
dataSourceNoP, // if exist then refresh
|
|
3219
|
+
dataSourceNoP = null, // if exist then refresh
|
|
3220
3220
|
parentDataSourceNoP,
|
|
3221
3221
|
containerIdP,
|
|
3222
3222
|
rowIdP,
|
|
@@ -9360,7 +9360,23 @@ func.UI.screen.init = async function (SESSION_ID, prog_id, sourceScreenP, callin
|
|
|
9360
9360
|
// console.log("***");
|
|
9361
9361
|
func.UI.utils.indicator.screen.busy();
|
|
9362
9362
|
|
|
9363
|
-
const ret = await func.datasource.create(
|
|
9363
|
+
const ret = await func.datasource.create(
|
|
9364
|
+
SESSION_ID,
|
|
9365
|
+
prog_id,
|
|
9366
|
+
null, //params?.callingDataSource_objP?.dsSession
|
|
9367
|
+
params.parentDataSourceNoP,
|
|
9368
|
+
$rootFrame.attr('id'),
|
|
9369
|
+
rowIdP,
|
|
9370
|
+
jobNoP,
|
|
9371
|
+
null,
|
|
9372
|
+
null,
|
|
9373
|
+
null,
|
|
9374
|
+
null,
|
|
9375
|
+
null,
|
|
9376
|
+
null,
|
|
9377
|
+
null,
|
|
9378
|
+
parameters_obj_inP,
|
|
9379
|
+
);
|
|
9364
9380
|
|
|
9365
9381
|
var _ds = SESSION_OBJ[SESSION_ID].DS_GLB[ret.dsSessionP];
|
|
9366
9382
|
_ds.screen_params = params;
|