Posts by Gabriel Barreto • 168 points
6 posts
-
0
votes1
answer573
viewsA: Module.ts Ionic 2
This new module file is to use Lazy loading (which from my point of view has GREATLY improved performance). If you do not want to use Lazy loading and continue with Ionic as it was, simply delete…
-
1
votes1
answer508
viewsA: Increment object property within an array
You can do as follows and eliminate the function addQtd: <ion-item *ngFor="let item of choice"> <button ion-button (click)="item.qtd = item.qtd + 1">Add</button>…
-
1
votes1
answer666
viewsQ: Handling of JQUERY parents and siblings
I have a question in Jquery. I have the following code, example: <div class="col-sm-2"> <div class="md-checkbox"> <input type="checkbox" id="checkbox1" class="md-check">…
-
1
votes1
answer1476
viewsQ: List Javascript objects in a table
Good afternoon. I have an object: var relatorios = [ { "Data": "28/08/2015", "Descricao": "Visita a Cliente", "Classificacao": "Class.2", "Valor": "R$435,00", "Verba": "RH", "Comentario": "Cliente…
-
1
votes1
answer433
viewsQ: Icons don’t line up
Good morning. I have two icons inside a table and I need them to be on the same line. When the page loads they are aligned: But when I navigate to another tab and go back to that tab, the icons look…
-
1
votes2
answers332
viewsQ: Multiple Views with Angularjs and Ionic
I’m trying to add some States in my code to navigate between them, but I can’t, the only ones that work are the views that come from the sidebar. Follows code: app js.:…