Questions tagged [mat-option]
33 questions
0
votes
0 answers
mat-autocomplete and input not displaying correctly, something is wrong with my form
I got the autocomplete format from: http://www.freakyjolly.com/angular-7-6-material-autocomplete-example-with-remote-server-side-results/
My input field is not erasing the placeholder when typing something in, as well as the options are not…

tonsar
- 71
- 8
-1
votes
1 answer
Angular mat-option with multiple values and show only one value when mat-option selected
Let's say I have this static object
allAccount = [
{ name: 'All Accounts', amount: 140853.47},
{ name: 'Credit Card ',amount: '-455.15' },
];
and I have mat-option interface with two values, name and amount.
…

Hena fufa
- 59
- 3
-1
votes
1 answer
mat-select multiselect option click only on checkbox
I want to create a dropdown which has my mat-option with multiselect and have radio buttons on each mat-option.
The problem that I am facing is I cannot ideally click on radio buttons.
On clicking on any option the radio gets selected automatically…