Use ionic with jQuery?
Great. The modularization of angular + simplicity of jquery is a great combo.Apparently I can suffice with jqlite , but will my app slowdown because I use angular + jquery?? and also when should I...
View Article'ionic platform build android' - FAILS :(
Build in android sucessfull but ionic serve not created.how to process next further steps
View ArticleSwitching Ionic CLI between 1.x and 2.x back and forth
yes i got the same message...i updated all the CLI's i had and also cleared node cache still i got the same problem so i did the following uninstalled nodedeleted node and npm folders from my...
View ArticleSlideBox 1.2.1 : how to get instance?
Hi community, How did you get the instance of the new slider?Here is an example of my issue : http://codepen.io/DFkd2/pen/yeaPPb?editors=101 Regards, DFull
View ArticleVideo.js and Windows explorer on ionic
Hello, So we had an app that was built using ionic and all seemed well except for an issue between video.js and ionic. Our hunch is something in the css or Java is causing the player controls to be...
View ArticleDeclaring one variable and use this common variable in all pages
Create a service and inject it where you need it.
View ArticleSwitching Ionic CLI between 1.x and 2.x back and forth
oh..i use different way again i just type npm install -g ionic so back to my older version..now working and create new project for older version. thanks..
View ArticleWhat is the equivalent of "resolve" in ionic 2?
@willb i'm almost sure the .then() chaining will get the data in serial way as it should wait for the resolve of the service behind it, the observable i'm no so sure as i just looked to the Rxjs docs...
View ArticlelocalNotification
Hi , I am creating an app with daily local notifications, I would like the user to provide the time, so i used ionic time picker plugin and saved the epoch to the sqlite database, then i get the epoch...
View ArticleDeclaring one variable and use this common variable in all pages
@willb is right, in ionic 2 all components have isolated scope, in order to have available a variable you need to create a service to be able to comunicate data between components. But, and this is a...
View ArticleWhat is the equivalent of "resolve" in ionic 2?
Ah, looks like you're right!It chains nicely: function get1() { console.log('firing get1') return new Promise(function (resolve) { setTimeout(resolve, 1000); }); } function get2() {...
View ArticleWhat is the equivalent of "resolve" in ionic 2?
Actually only the first get1 is the one that needs to be a promise, the other get# functions would be able to just return a value if they didn't have an async operation, but as timeout is a function...
View ArticleIonic Keyboard Overlap Hides Div Content
That stops content from disappearing but shows it at the top and makes the screen scrollable. I found a workaround by removing the keyboard accessory bar and making the form height smaller so it...
View ArticleSingle column phone, double tablet
So I found out how to create the layout I'm looking for By creating 2 columns and using a row responsive-sm it works, the only problem is, this is all wrapped in an ng-repeat, so now I have the issue...
View ArticleVertical touchscreen scrolling not working in Ionic with Windows
Yes, it just needed this: body { -ms-content-zooming: none;} on app.css. Ionic.css & scss/_util.scss
View ArticleTemplate Tree File (.html)
Hi, Is there any way to use templates html files in a tree structure folder? I would like to arrange some projects.Like this: templateUrl: 'Templates/Something/Folder/Tools/HtmlFile.html' Haven't...
View ArticleRelative url with templateUrl not work with bundle file
hi, how to use relative url with templateUrl i already put moduleId: module.id but it doesn't work when use ionic serve when i debug the bundle file i find the problem in this line var sourceAbsUrl =...
View ArticleIonic 2 with ES6 or TypeScript
Hi!I started a new Ionic 2 project for testing purposes. So, after looking at the source files, I saw that Ionic 2 comes with ES6 integration which is not exactly the same as TypeScript.I just want to...
View Article