You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I had a flyout with some inputs (text, email). When I tried to tap button Alt or Alt Gr (french keyboard), the flyout is hidden immediately.
Any ideas ?
The text was updated successfully, but these errors were encountered:
I encountered the same issue using normal WinJS and fixed it by adding event.preventDefault() in function Flyout_handleKeyDown(){ ... } in the ui.js page.
_handleKeyDown: functionFlyout_handleKeyDown(event){if((event.keyCode===Key.space||event.keyCode===Key.enter)&&(this===_Global.document.activeElement)){event.preventDefault();event.stopPropagation();this.winControl.hide();}elseif(event.shiftKey&&event.keyCode===Key.tab&&this===_Global.document.activeElement&&!event.altKey&&!event.ctrlKey&&!event.metaKey){event.preventDefault();event.stopPropagation();this.winControl._focusOnLastFocusableElementOrThis();//Add The Following}elseif(event.keyCode===Key.alt){event.stopPropagation();}}
Hi,
I had a flyout with some inputs (text, email). When I tried to tap button Alt or Alt Gr (french keyboard), the flyout is hidden immediately.
Any ideas ?
The text was updated successfully, but these errors were encountered: