Most voted "material" questions
7 questions
Sort by count of
-
2
votes1
answer250
viewsLeave some input select Multiple(Angular Material) pre-marked
I am using Angular Material in my application, and it in turn has this list created to fill in my input: lista: any[] = [ { name: 'Cursos', tribunais: [ { value: 'RDC1'}, { value: 'RDC2'}, { value:…
-
1
votes1
answer437
viewsSelect using Enum
I have a form where one of the fields is a select, and this select is an Enum, I can popular it but can not send the value, always goes with value 0 when I do the post. I wanted a select with two…
-
0
votes1
answer159
viewsWrong icon on angular Stepper mat
I’m trying to put an Edit icon when the state is address, but the icon shown is from the first state. I tried to: First step: <ng-template matStepperIcon="edit">…
-
0
votes1
answer459
viewsmat-table Sorting does not work in Angular
I’m trying to Sorting my columns with the material table Sorting, but I click on Sort and nothing happens. My template: <table id="tabelaLogs" mat-table [dataSource]="dataSource" matSort…
-
0
votes1
answer291
viewsAngular material table is not doing sorting
I am trying to put sorting in my material angular but by clicking on the corresponding ordering arrow nothing happens. I tried something like: <mat-table #table id="tabelaLogs"…
-
0
votes1
answer22
viewsIs it possible to set the number of items displayed in a material table per device?
I’m doing a project in React and I have a component that makes a data listing using Material Table. By default I set to display 10 items per page, but in mobile it is bad to have so many items,…
-
-2
votes1
answer125
viewsOverwrite the default icone of mat-Stepper angular material
I’m trying to override the default mat-Stepper icon, but it doesn’t seem to work. I followed the documentation, but my icon is next to my label, instead of overwriting and staying in the blue…