@xuda.io/runtime-bundle 1.0.464 → 1.0.466
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 +5 -1
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +5 -1
- package/js/xuda-runtime-slim.min.es.js +5 -1
- 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
|
@@ -29333,7 +29333,7 @@ func.datasource.execute = async function (SESSION_ID, dataSourceSession, IS_DATA
|
|
|
29333
29333
|
// }
|
|
29334
29334
|
// }
|
|
29335
29335
|
|
|
29336
|
-
if (!prog_obj.progDataSource?.dataSourceType || prog_obj.properties.renderType === '
|
|
29336
|
+
if (!prog_obj.progDataSource?.dataSourceType || prog_obj.properties.renderType === 'form' || (tree_obj.rwMode === 'U' && tree_obj.allowCreate)) {
|
|
29337
29337
|
_ds.currentRecordId = 'newRecord';
|
|
29338
29338
|
if (tree_obj.rwMode === 'U' && tree_obj.allowCreate) {
|
|
29339
29339
|
_ds.set_mode = 'C';
|
|
@@ -32085,6 +32085,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32085
32085
|
let ret = await common_fx['xu-render']($elm, val);
|
|
32086
32086
|
return ret;
|
|
32087
32087
|
},
|
|
32088
|
+
'xu-ref': async function ($elm, val) {
|
|
32089
|
+
let ret = await common_fx['xu-ref']($elm, val);
|
|
32090
|
+
return ret;
|
|
32091
|
+
},
|
|
32088
32092
|
},
|
|
32089
32093
|
};
|
|
32090
32094
|
|