Ionic Keyboard Scroll Issue - IOS
We had the same issue for ios 9, we are using the following, till there is a fix! <script> window.addEventListener('native.keyboardshow', keyboardShowHandler); function keyboardShowHandler(e) {...
View Article$ionicHistoryProvider is missing
Yes, I'm still on the beta 13. Hmm, the ionicHistory component is not available on this version. I just check the source from bower. I will update to the final version then. thanks @yurinondual for...
View ArticleHow to make a collapsing toolbar
Does ionic have anything similar to the collapsing toolbar from android? I'm looking to achieve something similar to this image. I have found ionic scroll vista but it only takes care of the toolbar...
View ArticleWorking with BIG json
Well.. if the limit is reached then user can be promted to allow additional 10MB
View ArticleIonic run ios --device hangs lldb and orphans ios-deploy processes
I'm seeing the same here with lldb -version lldb-340.4.70, ionic -version 1.7.6, ios-deploy -V 1.8.2, Xcode Version 7.0.1 (7A1001) same OSX 10.10.5 To resolve I frequently killall -9 ios-deploy Would...
View ArticleiOS Status Bar pushes down my app's header
Of course. I am using the cordova statusbar plugin, and this is the code that i run (in several places to make sure that they run), but seemingly it doesn't do anything with the statusbar. This in...
View ArticleHelp with sqlite
Thanks fabio. I'm having another problem.I'm using db variable inside a controller but the variable value is always null.How can I access the db variable inside a controller ? Thanks.
View ArticleNo Content-Security-Policy meta tag found. Please add one when using the...
Now I put "allow-navigation href="*" " at config.xml. It seems to process the authentication and then show this message on console : GET https://auth.firebase.com/favicon.ico 404 (Not Found) Any ideas...
View ArticleTrouble displaying HTML emails in an Ionic App
No that didn't work.The email has lot of inline styles So it does not fit into the parent div. Thanks
View ArticleHelp with sqlite
Sorry. This code works: if(window.cordova) { // App syntax var db = $cordovaSQLite.openDB("myapp.db"); } else { // Ionic serve syntax var db = window.openDatabase("myapp.db", "1.0", "My app", -1); }...
View ArticleHow to remove user (unregister) push notification
$cordovaPush.unregister().then(function(result) { alert("success"); }, function(err) { alert("error"); });
View ArticleiOS Status Bar pushes down my app's header
So you shouldn't ever touch the Xcode plist file. If I understand you correctly, you're hiding the status bar, but still getting the 20px padding on top? Is that correct. Also, you may not want to use...
View ArticleIs it possible to showOptionButtons like closeOptionButtons in javascript?
No, it's not built into the code.
View ArticleHow to detect if container object is zoomed when using ion-scroll
Hi, I am using ion-scroll with zoom enabled like so: <ion-scroll has-bouncing=false min-zoom=1 zooming="true" direction="xy" style="width: 100%; "> Inside ion-scroll, I have an image. Is there a...
View ArticleHelp with sqlite
The db var must exist and be defined, so you can use into your controller: var db = $cordovaSQLite.openDB({ name: "myapp.db" }); to (re)open the db, or save the db variable somewhere (scope?).
View ArticleCORS not working in apk but works in ionic serve( browser)
@iiitmahesh so let's try to see if we can recreate this with a blank app first and figure out where the issue is. What steps would I need to take to recreate this issue?
View ArticlePush notifiction
is there any way to delete ionic users after adding them using $ionicUser.identify(user);
View ArticleHow to apply camera editing per frame?
Hello, I need to apply a camera editing per frame in my app. How can i do it? It need to stay working and instantly applying the effect: http://jsfiddle.net/Tamersoul/dr7Dw/ I will use that for...
View Article