@xuda.io/runtime-bundle 1.0.1130 → 1.0.1131
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.
|
@@ -26973,7 +26973,8 @@ func.UI.utils.get_element_info = function (SESSION_ID, dsSessionP, ui_idP, $cont
|
|
|
26973
26973
|
// }
|
|
26974
26974
|
// } else {
|
|
26975
26975
|
// ret.nodeId = $elm.data().xuData.nodeId;
|
|
26976
|
-
ret.nodeId = $elm.
|
|
26976
|
+
ret.nodeId = $elm.data().xuData.xu_id;
|
|
26977
|
+
// ret.nodeId = $elm.attr('xu-ui-id');
|
|
26977
26978
|
// }
|
|
26978
26979
|
}
|
|
26979
26980
|
ret.$elm = $elm;
|
|
@@ -27837,8 +27838,8 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
|
|
|
27837
27838
|
return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
|
|
27838
27839
|
};
|
|
27839
27840
|
|
|
27840
|
-
|
|
27841
|
-
var $elm = $(`[xu-ui-id="${queue_obj.paramsP.elem_key}"]`);
|
|
27841
|
+
var $elm = func.UI.utils.find_in_element_data('xuData', $(SESSION_OBJ[SESSION_ID].root_element), 'xu_id', queue_obj.paramsP.elem_key);
|
|
27842
|
+
// var $elm = $(`[xu-ui-id="${queue_obj.paramsP.elem_key}"]`);
|
|
27842
27843
|
|
|
27843
27844
|
if (glb.new_xu_render) {
|
|
27844
27845
|
$elm = $(`[xu-ui-id="${queue_obj.paramsP.elem_key}"]`);
|
|
@@ -31295,7 +31296,6 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
31295
31296
|
const selector_id = glb.new_xu_render ? $(this).data()?.xuData?.ui_id : $(this).data()?.xuData?.xu_id;
|
|
31296
31297
|
|
|
31297
31298
|
if (attr.length) {
|
|
31298
|
-
debugger;
|
|
31299
31299
|
selectors[selector_id] = selectors[selector_id];
|
|
31300
31300
|
|
|
31301
31301
|
if (!selectors[selector_id]) {
|