G GiulioVale Active Member Licensed User Longtime User Nov 13, 2014 #1 Any solution for gesture (slide) over webview?
Erel B4X founder Staff member Licensed User Longtime User Nov 13, 2014 #2 WebView handles the gestures internally. Upvote 0
G GiulioVale Active Member Licensed User Longtime User Nov 13, 2014 #3 Sorry but is not clear. Example slide to right to go to nextpage where nextpage is a my link... Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Nov 13, 2014 #4 It is not possible as WebView handles the gestures internally. You might be able to inject JavaScript that will detect the gesture. Upvote 0
It is not possible as WebView handles the gestures internally. You might be able to inject JavaScript that will detect the gesture.
G GiulioVale Active Member Licensed User Longtime User Nov 13, 2014 #5 Erel said: It is not possible as WebView handles the gestures internally. You might be able to inject JavaScript that will detect the gesture. Click to expand... And from this I can "signal" to b4i code? Upvote 0
Erel said: It is not possible as WebView handles the gestures internally. You might be able to inject JavaScript that will detect the gesture. Click to expand... And from this I can "signal" to b4i code?
Erel B4X founder Staff member Licensed User Longtime User Nov 13, 2014 #6 Not so simple. However if you just want to load a new page then you can do it from your JavaScript. You can change the current address and then handle the OverrideUrl event to "raise an event" from the JavaScript. Upvote 0
Not so simple. However if you just want to load a new page then you can do it from your JavaScript. You can change the current address and then handle the OverrideUrl event to "raise an event" from the JavaScript.
G GiulioVale Active Member Licensed User Longtime User Nov 13, 2014 #7 Erel said: Not so simple. However if you just want to load a new page then you can do it from your JavaScript. You can change the current address and then handle the OverrideUrl event to "raise an event" from the JavaScript. Click to expand... Uhm so my javascript have to know prev or next page address and gesture have to call it. OK Upvote 0
Erel said: Not so simple. However if you just want to load a new page then you can do it from your JavaScript. You can change the current address and then handle the OverrideUrl event to "raise an event" from the JavaScript. Click to expand... Uhm so my javascript have to know prev or next page address and gesture have to call it. OK