bromie2008 Member Licensed User Feb 14, 2017 #1 When i load URL on my app, In my web, popup browser cannot come out? If i use browser, it can. Its it because of the permission??
When i load URL on my app, In my web, popup browser cannot come out? If i use browser, it can. Its it because of the permission??
Erel B4X founder Staff member Licensed User Longtime User Feb 14, 2017 #2 Which type of popup? You can try SafariController from iUI9 library. Upvote 0
bromie2008 Member Licensed User Feb 14, 2017 #3 its a popup new page. Sample "onClick="return popup(this, 'gloss')"><AREA SHAPE=RECT HREF="yourpopup.html" ALT="Your Popup" COORDS="140,10,180,50" Upvote 0
its a popup new page. Sample "onClick="return popup(this, 'gloss')"><AREA SHAPE=RECT HREF="yourpopup.html" ALT="Your Popup" COORDS="140,10,180,50"
Erel B4X founder Staff member Licensed User Longtime User Feb 14, 2017 #4 Have you tried it with SafariController? Upvote 0
bromie2008 Member Licensed User Feb 15, 2017 #5 Yes!.. but i can't load popup window on that Last edited: Feb 15, 2017 Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Feb 15, 2017 #6 Can you post the link of this web page? Upvote 0
bromie2008 Member Licensed User Feb 15, 2017 #7 I just to test the popup browser on my app. This is sample link : http://html.com/javascript/popup-windows/ Click on your popup Thanks Erel Upvote 0
I just to test the popup browser on my app. This is sample link : http://html.com/javascript/popup-windows/ Click on your popup Thanks Erel
Erel B4X founder Staff member Licensed User Longtime User Feb 15, 2017 #8 It does work here. I clicked on "my popup" and it navigated to: Don't expect it to open in a floating window. It replaces the current page. You can use the OverrideUrl to intercept the link if you like: B4X: Sub WebView1_OverrideUrl (Url As String) As Boolean Log(Url) Return False End Sub Upvote 0
It does work here. I clicked on "my popup" and it navigated to: Don't expect it to open in a floating window. It replaces the current page. You can use the OverrideUrl to intercept the link if you like: B4X: Sub WebView1_OverrideUrl (Url As String) As Boolean Log(Url) Return False End Sub