When we place button inside angular material dialog it is auto focussing first button in that modal.
How to remove auto focus on button inside angular material modal?
Asked Answered
You can add the autofocus = false
properties to the dialog to disable the auto focus.
Example as below:
const dialogRef = this.dialog.open(DialogOverviewExampleDialog, {
width: '250px',
data: {name: this.name, animal: this.animal},
autoFocus: false
});
The word
autofocus
in the phraseautofocus = false
should be autoFocus
. The letter f should be capitalized. –
Spickandspan © 2022 - 2024 — McMap. All rights reserved.