Hi,
Is it possible to unfocus when the webform is loaded?
For now I have focus on e.g. first TWebEdit component but I want to have form without any element focused after web form is showing.
Try
TJSHTMLElement(Edit.ElementHandle).blur();
Ok thx ... can be in this way in general for active element
((document.activeElement) as TJSHTMLElement).blur;
Thank you for the help @brunofierens
1 Like
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.