From: Bill Erickson Date: Thu, 2 Jul 2020 21:39:00 +0000 (-0400) Subject: LP1888723 combobox down arrow same as click X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=0365418545f3124912c047b01b007f31d5036bce;p=evergreen%2Ftadl.git LP1888723 combobox down arrow same as click now treats down arrow as the same as a click operation, allowing for activation of selectabled options dropdown via keyboard. Signed-off-by: Bill Erickson Signed-off-by: Ruth Frasur Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/eg2/src/app/share/combobox/combobox.component.html b/Open-ILS/src/eg2/src/app/share/combobox/combobox.component.html index 0e5253b9f6..e3f750990e 100644 --- a/Open-ILS/src/eg2/src/app/share/combobox/combobox.component.html +++ b/Open-ILS/src/eg2/src/app/share/combobox/combobox.component.html @@ -25,6 +25,7 @@ [inputFormatter]="formatDisplayString" (click)="onClick($event)" (blur)="onBlur()" + (keyup.arrowdown)="onClick($event)" container="body" (selectItem)="selectorChanged($event)" #instance="ngbTypeahead"/>