Posts by Gabriel Lovetro • 141 points
4 posts
-
0
votes1
answer114
viewsA: Simulate click on a compiled template
This error indicates that the $digest Angular is already running while you try to run it again. Some methods of jQuery may cause this error. The solution is to use a $timeout. For example:…
-
0
votes1
answer429
viewsA: how to pass parameter to another screen with ionic1 and angular1?
You can get the information manually by calling a method by ng-click: <button class="botao button button-positive" id="1" ng-click="getId(1)">Icon</button> Then you can store this…
-
0
votes1
answer89
viewsA: Ionic1 + input [type=file] does not work; How does it work?
Depends on the type of files you want to allow the user to choose. The input type='file' should work for iOS, but only allows you to choose images from the user’s gallery. Already for Android, only…
-
1
votes1
answer50
viewsA: Projects created with Ionic 2 do not execute
According to the error message, you may be running an older or incompatible version of node.js or npm. In this case, I recommend you try to install the most current version (if you don’t already…