0
I have a menu of the angular material design that when it opens it focuses on the first menu item, I would like to remove this method.
I saw on the web site of angular material that this method has the following attributes:
Methods
focusFirstItem
Focus the first item in the menu.
Parameters
origin
FocusOrigin = 'program'
Action from which the focus originated. Used to set the correct styling.
How can I override this method? I must create this method in my Component.ts?
tried something like
focusFirstItem(origin){
return false
}
What is the type of menu that focuses on the first item? https://material.angular.io/components/menu/overview, this one displays the list without selecting any
– Pedro
I’m already using this, but the first item comes with a blue border, probably caused by the call of this method "focusFirstItem"
– veroneseComS
should not come with the blue border as it is not the behavior shown in the documentation. You can edit the question with its code scenario?
– Pedro