Posts by Angular Man • 47 points
8 posts
-
0
votes1
answer23
viewsA: Android List View with "Complex" Layout
I found the right component: https://developer.android.com/reference/android/widget/ExpandableListView att…
-
-1
votes1
answer23
viewsQ: Android List View with "Complex" Layout
Until today I had not needed to use layouts that escape the pattern of a list for example. This time, I need to create a list view with a sort of header. For example: [{categorias: [{1, 2,…
-
0
votes1
answer2710
viewsQ: Access another Component function (Angular5)
Suppose in my Componenta I have a list of products. In my componentB I have a modal that registers my products. When registering a product, I want the componentB to call a Componenta function to…
angularasked Angular Man 47 -
0
votes1
answer256
viewsQ: Create HTML Tag with Angular 5?
With Angularjs I created a directive, and only imported using the tag and it was already available to use in any HTML file. I used this to centralize some visual objects that repeated themselves in…
angularjsasked Angular Man 47 -
3
votes2
answers312
viewsQ: How to round up number?
I need to use the following logic to round up: Numbers between x.1 and x.9 will be rounded to x.5, that is, it would look like this using examples: 1.0 = 1; 1.2 = 1.5; 1.9 = 1.5; Any idea on how to…
phpasked Angular Man 47 -
0
votes1
answer145
viewsQ: How to mount this ng-repeat?
I decided to organize the data in "tabs". But I’m not able to do it using ng-repeat from Angularjs. I have the following json object for tests: var obj = { URL_IMAGEM:"img/user.png", CLIENTE:"BRUNO…
-
1
votes1
answer529
viewsQ: Invalid argument supplied for foreach() Using JSON
I’m trying to traverse the foreach with a populated JSON array. To make it easier I’m testing via $_GET (but I’ve tried it with an array populated by php but it didn’t work). The $_GET is like this:…
-
0
votes1
answer214
viewsQ: Send data to another tab through the "ion-option-button"?
How can I send data from one tab to another tab by clicking on the "ion-option-button" component? This target tab will have a form, the intention is to edit the data contained in a "". Data for…