hello,
Is there any way to keep softkeyboard closed when background is clicked on mobile browsers?
Input controls seems focused even background is clicked on desktop and mobile.
Currently using a dummy label to focus. but there should be a better solution for that.
thanks!
Hello,
Can you please provide a test case that shows the solution you implemented with the dummy label?
Thanks,
Julie
Also seems to work when clicked outside:
Me.Eval(”
if (document.activeElement instanceof HTMLElement) {
document.activeElement.blur();
}
“)
Please login first to submit.