如何在SimpleForm中获取当前活动焦点的元素?我已经尝试过使用getFocusInfo()
,但是如果我尝试选择的元素具有主动焦点,我会有信息
您可以像这样获得当前的焦点控制:
getCurrentFocusedControl: function() {
const currentFocusedControlId = sap.ui.getCore().getCurrentFocusedControlId();
return sap.ui.getCore().byId(currentFocusedControlId);
},