@xuda.io/runtime-bundle 1.0.1040 → 1.0.1042
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.
|
@@ -31462,22 +31462,22 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
31462
31462
|
|
|
31463
31463
|
if (typeof node.xu_render_made !== 'undefined' && !node.xu_render_made) {
|
|
31464
31464
|
const node_data = UI_WORKER_OBJ.xu_render_cache[node.xu_render_xu_ui_id][node.xu_render_cache_id];
|
|
31465
|
-
const
|
|
31466
|
-
const
|
|
31465
|
+
const elem_key = node.xu_render_xu_ui_id;
|
|
31466
|
+
const elem_val = { attributes: [attr], $elm: node_data.$div };
|
|
31467
31467
|
|
|
31468
31468
|
var res = await func.expression.get(SESSION_ID, elem_val.$elm.data().xuAttributes['xu-exp:xu-render'], elem_val.$elm.data().xuData.paramsP.dsSessionP, 'UI Property EXP', elem_val.$elm.data().xuData.recordid);
|
|
31469
31469
|
|
|
31470
31470
|
var attr_value = await func.common.get_cast_val(SESSION_ID, 'refresh xu-attributes', 'xu-render', 'bool', res.result);
|
|
31471
31471
|
|
|
31472
31472
|
const obj = {
|
|
31473
|
-
ui_type:
|
|
31473
|
+
ui_type: elem_val.$elm.data().xuData.ui_type,
|
|
31474
31474
|
SESSION_ID,
|
|
31475
|
-
elem_key
|
|
31476
|
-
elem_val
|
|
31475
|
+
elem_key,
|
|
31476
|
+
elem_val,
|
|
31477
31477
|
fields_arr,
|
|
31478
31478
|
attr_value,
|
|
31479
31479
|
};
|
|
31480
|
-
func.UI.worker.add_to_queue(SESSION_ID, 'gui event', 'execute_xu_render_attributes', obj, new_job,
|
|
31480
|
+
func.UI.worker.add_to_queue(SESSION_ID, 'gui event', 'execute_xu_render_attributes', obj, new_job, elem_val.$elm, elem_val.$elm.data().xuData.paramsP.dsSessionP);
|
|
31481
31481
|
}
|
|
31482
31482
|
}
|
|
31483
31483
|
}
|