Focus issues in mobile browsers

0
0

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!

 

 

  • You must to post comments
0
0

Hello,

Can you please provide a test case that shows the solution you implemented with the dummy label?

Thanks,

Julie

  • You must to post comments
0
0

Also seems to work when clicked outside:

Me.Eval(”
if (document.activeElement instanceof HTMLElement) {
document.activeElement.blur();
}
“)

  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.