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=28c8215126cc9218cd6ac079aa6a7bebb8420463;p=working%2FEvergreen.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 --- 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 83df22e20a..1d35b48450 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 @@ -18,6 +18,7 @@ [inputFormatter]="formatDisplayString" (click)="onClick($event)" (blur)="onBlur()" + (keyup.arrowdown)="onClick($event)" container="body" (selectItem)="selectorChanged($event)" #instance="ngbTypeahead"/>