Ionic state restore command takes a lot of time on the Mac mini
There could be but don't think the internet connection is slow to take 12 minutes. We also download a lot of dependencies to do the build and they run fast. Is it not possible to cache the plugins to...
View ArticlengCordova camera
I found what seems to be the problem. the file plugin has a file named FileReader.js that has module.exports = FileReader and in rethinker.js blobToBuffer is using FileReader, but the filereader in...
View ArticleNo provider for Http - ionic2 alpha 42
Yeah, no luck, updating the CLI gives me errors too.Update: Ok fixed CLI but ionic-framework still says that angular2@2.0.0-alpha.52 peer dependency wasn't installed.
View ArticleIonic upload erased my controller....? Can I retrieve it somehow?
So I am not 100% sure what happened, but on Friday 12/11 I uploaded my app at 1:29pm. When I came back to work today my controller had this inside and nothing else. Sort of fortunately I have a...
View ArticleNo provider for Http - ionic2 alpha 42
Just declare it in your package.json file: "dependencies": { "angular2": "2.0.0-alpha.52", ... } and run npm update
View ArticleIonic-modal-select
Hi folks, just wanted to showcase my "ionic-modal-select" component for the ionic framework,based on $ionicModal. It basically gives you a directive (ng-model aware) to select an item from a list...
View ArticleNo provider for Http - ionic2 alpha 42
Already did, along with: npm i es6-promise@^3.0.2 es6-shim@^0.33.3 reflect-metadata@0.1.2 rxjs@5.0.0-alpha.14 zone.js@0.5.8 angular2@2.0.0-alpha.52 --save But now when running ionic serve -s -c i get...
View ArticleHow to save history for nav bar back button on page reload?
Hi everyone! I'm using the Ionic navbar in a web app for the back functionality. Unfortunately, when I refresh the page the back button disappears, I'm assuming because the history is getting deleted....
View ArticleNo provider for Http - ionic2 alpha 42
Yeah I know what you mean .However now the Http module is working, maybe it was just a dependencies problem due to the update. Now I've updated everything using the conference app project:...
View ArticleHow to disable a button on a condition?
You can use <button [class.button-disabled]="myCondition"> for now. You should be able to use the disabled attribute like this: <button [attr.disabled]="myCondition ? '' : null"> but it...
View ArticleIonic sms link not working
Maybe you could create a patch or pull request on Github to fix this?
View ArticlePush delivered but notification does not show
gaurav0: How do I get my code to display a native push notification when the app is active then? You don't as native push notifications only appear if the app is not active. Or what exactly do you...
View ArticleNg-click not firing
Yeah, that looks like it would do it. Could be an error with a plugin not loading throwing things off. I'd attempt either running, ionic state reset, or creating a smaller sample project and see if...
View ArticleHow get only some data from json
whit this code (thank you emrebfy) i get the data, but how i can put this data on a table? $scope.chiamataUno = function() { var authdata = Base64.encode("DEMVSINT_ADMIN" + ":" + "Password01");...
View ArticleIonic popup - truncated text
DJDJUA6m.jpg540x960 40.2 KB As you can see from the image the Red button is supposed to say "YES" but the text has been elipsed. How can i display a full text in popup buttons . below is the popup...
View ArticleCan a child view return data to the parent?
I hadn't tried this because I was under the impression that the parent view would be disconnected from the scope when the child scope was active. Per the documentation on ion-nav-view: By default,...
View ArticleError happened [Error: Invalid character entity
Hey thanks @gmarziou You saved my life: I had the same issue; the cause was a typo in my config.xml.Ether way, it would be nice if the system could address the issue in a less cryptic way.I lost a...
View Articleios9 input focus white screen
yes, me !and i wanna hang myselfdid you find what the hell happens and how to fix it ? thanks !
View ArticleCan a child view return data to the parent?
The parent scope has nothing to do with the "previous" scope! So you can add an abstract state --> as base controller for e.g. list and detail page --> so you can share data with both.
View Article