@xuda.io/runtime-bundle 1.0.1104 → 1.0.1105
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
|
@@ -11801,16 +11801,19 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11801
11801
|
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);
|
|
11802
11802
|
|
|
11803
11803
|
var attr_value = await func.common.get_cast_val(SESSION_ID, 'refresh xu-attributes', 'xu-render', 'bool', res.result);
|
|
11804
|
-
|
|
11805
|
-
|
|
11806
|
-
|
|
11807
|
-
|
|
11808
|
-
|
|
11809
|
-
|
|
11810
|
-
|
|
11811
|
-
|
|
11812
|
-
|
|
11813
|
-
|
|
11804
|
+
try {
|
|
11805
|
+
const obj = {
|
|
11806
|
+
ui_type: elem_val.$elm.data().xuData.ui_type,
|
|
11807
|
+
SESSION_ID,
|
|
11808
|
+
elem_key,
|
|
11809
|
+
elem_val,
|
|
11810
|
+
fields_arr,
|
|
11811
|
+
attr_value,
|
|
11812
|
+
};
|
|
11813
|
+
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);
|
|
11814
|
+
} catch (error) {
|
|
11815
|
+
debugger;
|
|
11816
|
+
}
|
|
11814
11817
|
}
|
|
11815
11818
|
}
|
|
11816
11819
|
}
|
|
@@ -9526,16 +9526,19 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9526
9526
|
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);
|
|
9527
9527
|
|
|
9528
9528
|
var attr_value = await func.common.get_cast_val(SESSION_ID, 'refresh xu-attributes', 'xu-render', 'bool', res.result);
|
|
9529
|
-
|
|
9530
|
-
|
|
9531
|
-
|
|
9532
|
-
|
|
9533
|
-
|
|
9534
|
-
|
|
9535
|
-
|
|
9536
|
-
|
|
9537
|
-
|
|
9538
|
-
|
|
9529
|
+
try {
|
|
9530
|
+
const obj = {
|
|
9531
|
+
ui_type: elem_val.$elm.data().xuData.ui_type,
|
|
9532
|
+
SESSION_ID,
|
|
9533
|
+
elem_key,
|
|
9534
|
+
elem_val,
|
|
9535
|
+
fields_arr,
|
|
9536
|
+
attr_value,
|
|
9537
|
+
};
|
|
9538
|
+
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);
|
|
9539
|
+
} catch (error) {
|
|
9540
|
+
debugger;
|
|
9541
|
+
}
|
|
9539
9542
|
}
|
|
9540
9543
|
}
|
|
9541
9544
|
}
|