@xuda.io/runtime-bundle 1.0.513 → 1.0.514
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
|
@@ -12569,6 +12569,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12569
12569
|
let ret_panel = await func.UI.screen.init(SESSION_ID, prog_id, paramsP.screenId, _ds, $elm, null, _ds.currentRecordId, null, true, param_obj, 'initXu_panel', undefined, refreshed_ds);
|
|
12570
12570
|
ret = { $new_div: ret_panel };
|
|
12571
12571
|
$container.data().xuData.xuPanelProps = $elm.data().xuAttributes;
|
|
12572
|
+
$container.data().xuData.xuPanelData = ret_panel.data();
|
|
12572
12573
|
return ret;
|
|
12573
12574
|
}
|
|
12574
12575
|
|
|
@@ -12643,7 +12644,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12643
12644
|
return ret;
|
|
12644
12645
|
},
|
|
12645
12646
|
'xu-ref': async function ($elm, val) {
|
|
12646
|
-
let ret = await common_fx['xu-ref']($container, val);
|
|
12647
|
+
let ret = await common_fx['xu-ref']($container, val, $elm.xuPanelData.xuData.paramsP.dsSession);
|
|
12647
12648
|
return ret;
|
|
12648
12649
|
},
|
|
12649
12650
|
},
|
|
@@ -12703,8 +12704,8 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12703
12704
|
};
|
|
12704
12705
|
|
|
12705
12706
|
const common_fx = {
|
|
12706
|
-
'xu-ref': async function ($elm, val) {
|
|
12707
|
-
func.UI.update_xu_ref(SESSION_ID, paramsP.dsSessionP, val.value, $elm);
|
|
12707
|
+
'xu-ref': async function ($elm, val, dsSession) {
|
|
12708
|
+
func.UI.update_xu_ref(SESSION_ID, dsSession || paramsP.dsSessionP, val.value, $elm);
|
|
12708
12709
|
|
|
12709
12710
|
// Select the node that will be observed for mutations
|
|
12710
12711
|
const targetNode = $elm[0];
|
|
@@ -10301,6 +10301,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10301
10301
|
let ret_panel = await func.UI.screen.init(SESSION_ID, prog_id, paramsP.screenId, _ds, $elm, null, _ds.currentRecordId, null, true, param_obj, 'initXu_panel', undefined, refreshed_ds);
|
|
10302
10302
|
ret = { $new_div: ret_panel };
|
|
10303
10303
|
$container.data().xuData.xuPanelProps = $elm.data().xuAttributes;
|
|
10304
|
+
$container.data().xuData.xuPanelData = ret_panel.data();
|
|
10304
10305
|
return ret;
|
|
10305
10306
|
}
|
|
10306
10307
|
|
|
@@ -10375,7 +10376,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10375
10376
|
return ret;
|
|
10376
10377
|
},
|
|
10377
10378
|
'xu-ref': async function ($elm, val) {
|
|
10378
|
-
let ret = await common_fx['xu-ref']($container, val);
|
|
10379
|
+
let ret = await common_fx['xu-ref']($container, val, $elm.xuPanelData.xuData.paramsP.dsSession);
|
|
10379
10380
|
return ret;
|
|
10380
10381
|
},
|
|
10381
10382
|
},
|
|
@@ -10435,8 +10436,8 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10435
10436
|
};
|
|
10436
10437
|
|
|
10437
10438
|
const common_fx = {
|
|
10438
|
-
'xu-ref': async function ($elm, val) {
|
|
10439
|
-
func.UI.update_xu_ref(SESSION_ID, paramsP.dsSessionP, val.value, $elm);
|
|
10439
|
+
'xu-ref': async function ($elm, val, dsSession) {
|
|
10440
|
+
func.UI.update_xu_ref(SESSION_ID, dsSession || paramsP.dsSessionP, val.value, $elm);
|
|
10440
10441
|
|
|
10441
10442
|
// Select the node that will be observed for mutations
|
|
10442
10443
|
const targetNode = $elm[0];
|