Posts by Andre Astafieff • 27 points
7 posts
-
1
votes2
answers191
viewsA: Table with dynamic columns
Posting the solution found with Ernesto’s support. <style> .grid { width: 288px; display: inline-flex; } thead { display: block; } table, th, td { border: 1px solid black; } table {…
angularanswered Andre Astafieff 27 -
0
votes2
answers191
viewsQ: Table with dynamic columns
I am facing problems in generating an HTML table through a return in Json, the problem is in generating the amount of columns dynamically as AIP returns. The return is presented in the following…
angularasked Andre Astafieff 27 -
0
votes1
answer48
viewsQ: Httpclient URL limit
Could someone tell me if there is any limitation to the size of a URL in httpclient in Angular? I’m trying to call an api from the url below, but the last 6 characters are cut.…
-
0
votes0
answers28
viewsQ: Horizontal data-table material
I have a json that returns the data structure below, where I populate a data-table. {TimeStamp: "2019-08-07T03:30:00.000Z", Value: "377.5", Quality: 3} {TimeStamp: "2019-08-07T03:40:00.000Z", Value:…
angularasked Andre Astafieff 27 -
0
votes0
answers31
viewsQ: js.Chart with error in *ngIf
I am trying to implement a js.Chart graph in an ng-template linked to a *ngIf directive, but when in this condition the graph does not open and generates the error can’t Acquire context from the…
angularasked Andre Astafieff 27 -
0
votes0
answers441
viewsQ: Angular life cycle
I’m having some doubts about the life cycle in Angular 7, when making a request for a certain API needed before I have picked up your token that also comes through the API, in another get. The doubt…
-
1
votes1
answer243
viewsQ: Angular 7 - mat-table with complex Json
Hi, I’m encountering problems in popular a mat-table with a Json that contains subitens. My API returns:…