Using this inside a webview (on IOS) #100
-
Hey! Again - love what you did <3 Im trying to implement this button into a page opened by a webview on IOS (iphones) After reading a bit about this i think there is no good way to do that without handling the whole download process in native code (way too messy for me right now) Is there any way? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Unfortunately, this is not possible. At this workaround, whenever the user is in that situation, for ical only, we automatically copy the target url into the user's clipboard and show a message that he needs to open the main browser manually and paste the code there. On Android, it is also helpful since ics data is sometimes blocked (not always as with iOS). However, if an ics file is given explicitly, we can skip the workaround on Android. |
Beta Was this translation helpful? Give feedback.
-
I've sort of implemented my own thing and it seems to work nicely :) What i did was create a very simple page that recieves parameters in the url and from them cretes an invitation to save to calendar (using your button) This way i send the user to that page from my webview (it openes in the external default browser (safari by default)) Thank you again! hope this helps anyone with the webview problem! :) |
Beta Was this translation helpful? Give feedback.
I've sort of implemented my own thing and it seems to work nicely :)
What i did was create a very simple page that recieves parameters in the url and from them cretes an invitation to save to calendar (using your button)
This way i send the user to that page from my webview (it openes in the external default browser (safari by default))
Thank you again! hope this helps anyone with the webview problem! :)
Dima.