Rank: Newbie Groups: Member
Joined: 5/26/2020 Posts: 1
|
I have following line in my html code
<a class="ac-custom-link" href="tel:000-000-5970" style="box-sizing: border-box; flex: 0 0 auto;">000-000-5970</a>
On normal chrome browser, when I click on above link it opens the default app associated with TEL protocol but, now on EO.WebBrowser when I click on a same link nothing is happening.
How can I get normal chrome browser behavior to invoke TEL protocol on EO.WebBrowser?
Thanks in Advance, Please suggest solution as early as possible.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,202
|
Hi, You can handle WebView.LaunchUrl event and then use the following code inside the event handler to launch the default app:
Code: C#
System.Diagnostics.Process.Start(e.Url);
Please let us know if this works for you. Thanks!
|