A time picker for Ionic framework applications
Kindly please follow the instructions as mentioned in the github repo. Surely you will get it.
View ArticleSome question about lib folder inside ionic
ive also noticed that ngCordova add other dependencies to lib folder such as angular angular-animate and others..is that normal?
View ArticlePassing tabs NavParams to tab
Yeah I think my approach is wrong. To give you some context I'm passing an id through to the TabsPage navParams to use to query an SQL table and display results on Tab1. So this.params = params; = 1...
View ArticleChance type input by check toggle
You can do : <input type ={{isToggled?'password':'text'}}></input> <ion-toggle ng-model="isToggled" >toggle</ion-toggle> I'd say i'ts the fastest way to do so
View Article$translateProvider - Load JSON from file
Hi @fabioferrero! Thanks for your good idea. I'm using only one file for all translation cause i'm update the language on demand at changes. My json-File:var t9N =...
View ArticleAndroid: zoomBy, zoomTo are marked as deprecated in native scrool view...
Hello! I use both zoomBy and zoomTo of $ionicScrollDelegate to zoom photos in photo viewer:http://ionicframework.com/docs/api/service/$ionicScrollDelegate/ When I updated my project to the latest...
View ArticleHorizontally scrolling sub header in ionic 2
Hav you thaught of overflow-x ? doc can be found here : http://www.w3schools.com/cssref/playit.asp?filename=playcss_overflow-x&preval=hidden
View ArticleHow to trigger push notification from device?
Hey guys, thanks for your feedback so far!I am actually using the exact code posted by @EffakT.The security issue is probably a contra, but on the other hand - will it not be the same by using an...
View ArticleAndroid "arrow-forward" not showing up for
When I create a button list-item, on iOS it shows the arrow-forward icon on the right, but on Android it does not. Here's an iOS example: http://cl.ly/3p3j291y1I2rHere's an Android example:...
View ArticleSwipe left/right event with side menu?
<ion-pane ion-side-menu-content drag-content="false"> <ion-header-bar class="bar-dark"> <h1 class="title">Cards</h1> </ion-header-bar> <ion-content scroll="true">...
View ArticleIonic 2 with ng-cordova
I just spent some time on this so replying here. if you are using typescript, your editor/the build will report an error that navigator is undefined. It will work on the device though when the cordova...
View ArticleHow cordova plugins work in ionic 2?
Hi,I am having trouble using cordova plugins. Trying to use cordova-plugin-ble-central https://github.com/don/cordova-plugin-ble-centralI add the plugin with ionic plugin add...
View ArticleKeyboard attach and a subheader does not play nicely
The problem is simple, in iOS, if I create an app with a header, a subheader, and a footer, then the footer is pushed off screen. Fixing this is simple though, it simple requires me to add some css to...
View ArticleCordova plugins supported in Ionic 2?
I think ionic 2 is not supporting ngCordova. So you have to use cordova plugin directly. I resolved a similar problem before by running: ionic build ios
View ArticleIonic 2 + NG2-Charts
Hello, I was trying to use ng2-charts which is an Angular 2 directive for Charts.js Back when I was using Ionic 1.2 .. I used this directive and it worked completely fine with no issues. Now with...
View ArticleUsing default parameter problem
I assign a default value to the function parameter and I cannnot run Ionic app on iOS. like this:fn: function(param1 = 1) { ...}orfunction fn(param1 = 1) { ... } It works well with 'ionic serve' but...
View ArticleHow to play only one audio at a time
I am using cordova media plugin in my Controller: $scope.playAudio = function(src) { src = '/android_asset/www/files/' + src; var media = $cordovaMedia.newMedia(src); media.play(); } Template HTML:...
View Article