Posts by Cabeca.cl • 131 points
5 posts
-
1
votes1
answer261
viewsQ: How to view SCROLL Permanent Ionic2
Good afternoon, I have a problem, and I’d like your help. I want to display the SCROLL whenever I am on this screen, I tried in many ways to use the ion-scroll component and still, nothing. I tried…
-
2
votes1
answer298
viewsA: Error while trying generates Ionic apk v2
Good afternoon friend, I also had this problem with IONIC2, I think you have to configure the following system variables configured: JAVA_HOME: C: Program Files Java jdk1.8.0_65 (Location of your…
-
0
votes1
answer76
viewsA: Error: Uncaught Ionic 2
import { Component} from '@angular/core'; import { LoadingController } from 'ionic-angular'; @Component({ selector: 'page', templateUrl: 'page.html', }) export class AlgumaPage { loader : any;…
-
3
votes1
answer822
viewsA: Pass html page id inside ngFor to ts page
Try to do it that way: HTML: (click)="chamaProd(item)" So you will pass the complete object from the list to your method chamaProd. TS: chamaProd(item : <<Objeto da Lista>>){ . . /* No…
-
1
votes2
answers5660
viewsA: How do I add the event (click) to a Component in Ionic2?
<ion-footer> <ion-toolbar color="black-light"> <button ion-button color="light" full clear (click)="abrirTela">Abrir Nova Tela</button> …