childbrowser

filepicker.io with phone gap on IOS

吃可爱长大的小学妹 提交于 2019-12-24 07:37:37
问题 I am trying to integrate filepicker.io with my Phonegap 2.2.0 project on iOS6 for iPad. In the docs on filepicker.io they say, just get childbrowser running and you are set. ( https://github.com/Filepicker/filepicker-phonegap ) Well, I got child browser running and tested the typical google example. But when I try to call the api like in their android example, it doesn't work. I edited the whitelist as well because of errors. The question is: Did somebody ever tried it on iOS? There are no

Pdf file url's are not working in phonegap

久未见 提交于 2019-12-13 09:46:35
问题 Am using window.open(url, '_blank', 'location=no') to open external web page, wherein that web page contains pdf file links. The problem am facing is these pdf links are not working within that browser. If I use window.open(url, '_blank', 'location=yes') or window.open(url, '_blank') is working as expected. In this scenario everything is working fine. But since my requirement is to hide the address bar, am giving location=no as argument to window.open() . Here pdf links are not working inside

PhoneGap and ChildBrowser on Android, Twitter doesn't load .. only splash screen

Deadly 提交于 2019-12-13 00:36:14
问题 I'm trying to load the twitter page https://mobile.twitter.com/ inside ChildBrowser on Android and it only loads a splash screen. just to mention, I tried many websites in the same app with http:// and https:// and all of them are working including Facebook. The only problem I have is with twitter. Any suggestions? 来源: https://stackoverflow.com/questions/10107661/phonegap-and-childbrowser-on-android-twitter-doesnt-load-only-splash-screen

Childbrowser with Cordova 1.7 iPhone issue

自闭症网瘾萝莉.ら 提交于 2019-12-12 02:16:22
问题 Can any expert here please point me to some valid walkthrough on how to make the ChildBrowser work with Cordova 1.7 in iPhone? I have found lots of documents and blogs out there that tell you how to do it, but none of them have worked for me. It is not a whitelist issue for sure, as for the time being I have set it to the wildcard *, so whitelisting problems can be safely ruled out I guess. In some cases, ChildBrowser was successfully installed, but when I called the showwebpage function, it

Adding CookieManager to android Childbrowser

白昼怎懂夜的黑 提交于 2019-12-11 09:36:09
问题 I am trying to get local cookies (file://) to work on android 3.1+ within ChildBrowser. I found a blog response talking about this specific issue and how to remedy it with Cookie Manager. I can't figure out where in the plugin to put the code. Has anyone successfully implemented this? Comment Below from http://code.google.com/p/android/issues/detail?id=3739 Comment 16 by edtechk...@gmail.com, Feb 1, 2012 I got this thing working, for Android 2.2, javascript's document.cookie works fine, just

Phonegap / Cordova ChildBrowser won't run Twitter web intents (SSL?)

大憨熊 提交于 2019-12-11 07:47:14
问题 I'm trying to integrate Twitter sharing functionality into my Android PhoneGap application, and rather than re-implement the controls to shorten URLs and track tweet length, I thought I'd use their premade web intents at https://twitter.com/intent/... So I'm trying to launch a URL like https://twitter.com/intent/tweet?text=Hello in a ChildBrowser window, so that I can let Twitter's interface take over. The user could sign in with their credentials, and once they're signed in, the text from

PhoneGap 1.5 ChildBrowser can't show local file

泪湿孤枕 提交于 2019-12-06 11:52:59
问题 I'm building a PhoneGap 1.5 (Cordova) application for iOS and want to use the ChildBrowser plugin to show PDF files. I've been able to get it set up and it works very well when I'm viewing external PDF files (http, https). The app has limited offline capabilities. I'm using the file system and file transfer API to download PDF files and save them to the local file system. When I try to view these documents using the ChildBrowser plugin, they never load. I've done some troubleshooting by

Childbrowser plugin in Phonegap 1.7 can open only for the first time

﹥>﹥吖頭↗ 提交于 2019-12-06 04:56:56
问题 Childbrowser plugin in Phonegap 1.7 can open only for the first time. I'm using Phonegap 1.7 and Childbrowser. Only for the first time child browser is working. After I closed the Childbrowser (pressed the done button) it's not opening again when I tried to open it. My code is this: $("a[target=_blank]").bind('click', function(e) { e.preventDefault(); var thisUrl = $(this).attr('href'); cb.showWebPage(thisUrl); alert("click"); }); When I click a link, the Childbrowser pops up and shows the

Phonegap build - Open external page in InAppBrowser or childbrowser with no toolbar and close it?

こ雲淡風輕ζ 提交于 2019-11-27 12:55:57
I want to open an external page in the InAppBrowser or childbrowser, where I don't show any toolbar and where I can have a button in my externalpage that closes the browser and returns to the app from where I opened the browser. So how to close when you don ́t have a DONE button? I have seen that if I have var ref = window.open(encodeURI(url), '_self', 'location=yes'); then it is possible to close the browser with ref.close(); but if I use that in the externalpage that I opened it doesn't work, it is not closing the browser? Is there any way to autorotate any of them if I have set the

Phonegap build - Open external page in InAppBrowser or childbrowser with no toolbar and close it?

放肆的年华 提交于 2019-11-26 16:09:51
问题 I want to open an external page in the InAppBrowser or childbrowser, where I don't show any toolbar and where I can have a button in my externalpage that closes the browser and returns to the app from where I opened the browser. So how to close when you don ́t have a DONE button? I have seen that if I have var ref = window.open(encodeURI(url), '_self', 'location=yes'); then it is possible to close the browser with ref.close(); but if I use that in the externalpage that I opened it doesn't