webview video shown keyboard

Hi,

ios webview video finish then keyboard appear.How to disappear keyboard?

first image
second image

Having a similar issue here. When webview is clicked on and closed, the keyboard appears. Without any previous interaction with keyboard. Very strange.

Please advise possible solutions.

Hi!

Thanks for reporting this issue! Are you able to share the code where this happens? Does it happen on Android aswell? If you have a minimal repro case that would be perfect :slight_smile: Anyways, raising an internal issue for this

Of course, this is the code which is placed in the MainView.ux

<WhileTrue Value="{webview.webviewVisible}">
		<StackPanel Orientation="Vertical">
			<StatusBarBackground Dock="Top"/>
		    <Panel Dock="Top" Height="50" Width="100%">
		        <Button Dock="Right" Clicked="{webview.hideWebview}">
		          <Image File="closeimage.png" Width="21" Height="21" Margin="0,0,20,0" />
		        </Button>
		        
		    </Panel>
		    <Panel>
		    	<NativeViewHost ux:Name="popupWebview" Background="#fff">
		        	<WebView ux:Name="webView" Url="{webview.webviewURL}" Width="100%" Height="540">
		        	</WebView>
		     	</NativeViewHost>
		  	</Panel>
			<BottomBarBackground Dock="Bottom" />
		</StackPanel>  
	</WhileTrue>

With my code:

Url is youtube embed

<DockLayout />
		<ScrollView Dock="Fill">
			<StackPanel Width="100%" Height="320" Alignment="Center">			
				<DockPanel Height="300">
					<WhileTrue Value="{webShow}">
						<NativeViewHost ZOffset="1">
							<WebView ux:Name="webv" Dock="Fill" Url="{video.embed}">		              
							</WebView>		             
						</NativeViewHost>					
						
					</WhileTrue>		      
				</DockPanel>
					   		 		   		    		 	
			</StackPanel>
			<ScrollingAnimation Range="SnapMin">
				<GiveFocus />
				<CancelInteractions AtProgress="0.75" />
			</ScrollingAnimation>	
			<ScrollingAnimation Range="SnapMax">
				<GiveFocus />
				<CancelInteractions AtProgress="0.75" />
			</ScrollingAnimation>	
			<Clicked>
				<GiveFocus />
			</Clicked>
		</ScrollView>

I’m having same issue, but Keyboard is presented at start of app. This consistently occurs when embedding a WebView, whether I populate with URL or not. Is there a way to force dismiss the Keyboard?

Hi!

This issue have been fixed and will be included in the upcoming release. You can get it early at https://www.fusetools.com/downloads/channel/qa, will be published there within the day (check the changelog)