Posts by Cordovaing • 106 points
7 posts
-
2
votes1
answer3737
viewsA: Custom Alerts and Prompts
How about creating your own Alert? In my projects I use both Cordova Dialogs plugins and custom popups. I think it is the best option, not to be depending on libs and etc. Look at this: Meta:…
-
0
votes1
answer80
viewsA: Error creating Cordova project
When you install Cordova it stores in your installation folders a version of Helloworld of the project for each platform (one Android pro, another Windows Phone pro, IOS, etc.). This is why it is…
apache-cordovaanswered Cordovaing 106 -
0
votes1
answer64
viewsA: Trying to make Alert on all href of the page but only one is displayed
When you select the elements by Class, Jquery will store all occurrences in an array. Therefore, the correct is: $(window).scroll(function(){ var hrefArray = $('.tooltip'); for(var i = 0; i <…
-
0
votes1
answer172
viewsA: Backbutton PHONEGAP
Hello! You do not need to create an onload Function. If Cordova is installed correctly, try the following: document.addEventListener("deviceready", onDeviceReadyBack, false); function…
-
0
votes1
answer95
viewsA: Inserting a navigation alert in Phonegap
Hello! Navigator.notification.Alert is a plugin command. More specifically, this one: https://www.npmjs.com/package/cordova-plugin-dialogs In order for it to work, you need to register the plugin in…
-
3
votes1
answer3281
viewsA: Error sending Phonegap pro Googleplay APK
Hello! You must send a digitally signed APK with a binary called "Keystore". As a way to better understand, it’s like you’re trying to send a DEBUG version instead of a RELEASE version. To solve the…
-
1
votes1
answer734
viewsA: How to open an external page in phonegap when clicking?
It is not advisable to open external pages within the Cordova application itself. If you need only open external pages, just call the device’s default browser by: navigator.app.loadUrl("seuLink", {…