Posts by Arthur Felipe • 69 points
6 posts
-
0
votes0
answers56
viewsQ: Sidebar renders multiple components
I have a Dashboard component, inside it I have a sidebar, which has the effect of changing the components that will be rendered on the screen, the 4 components that can be loaded, are at the bottom…
-
1
votes1
answer798
viewsA: Access HTML elements inside an Angular component
I was able to use Angular Input and Output to solve this problem, so instead of passing the reference of a button, I passed the click event, this way: TS Funnel (Son): @Input() showSidebar: boolean…
-
-2
votes1
answer798
viewsQ: Access HTML elements inside an Angular component
I have a Dashboard: <app-navbar></app-navbar> <div style="display: flex; height: 90vh;"> <app-sidebar id="sidebar" class="hide"></app-sidebar>…
-
1
votes2
answers62
viewsQ: Disable disabled from an access-level button
I have a list of items, where it is possible to edit and delete them through a button, and we have access levels in that system, having 'Sellers' and 'Master Users', but sellers can not delete…
-
3
votes2
answers57
viewsQ: Format string for (dd/mm)
I get a 4-digit string (numbers), and I need to break it in half, and put a "/", to format in type (dd/mm) <input [(ngModel)]="contato.birth" class="form-control" type="text"…
-
1
votes1
answer99
viewsQ: Minimum input date value should be today
I have a date type input, and I need it not possible to select date that is not from today back, I tried that way, but I did not have much success: HTML: <input [(ngModel)]="atv.dataini"…