select-country icon indicating copy to clipboard operation
select-country copied to clipboard

tabIndex does not focus on the input, but to the all component.

Open kfirufk opened this issue 5 years ago • 0 comments

I have a registration page where user selects his country. I use tabIndex on each/input select element, but when I click tab to focus on the mat-select-country, it focuses on the all element instead of the input, so I can't really type anything.

I use angular 11.2.3 with select-country 4.0.3 and angular material 11.2.2.

and this is how i use mat-select-country:


       <mat-select-country appearance="outline"
                                i18n-label
                                label="Country"
                                formControlName="country" tabindex="6">
            </mat-select-country>

kfirufk avatar Mar 03 '21 05:03 kfirufk