Grid에서 inline editor select 일때.. space 키 입력하면 닫히는 현상.

안녕하세요?

http://ax5.io/ax5ui-grid/demo/13-inline-edit.html

페이지에서

{key: “customer”, label: “customer”, editor: {type: “text”}},
{
key: “userType”, label: “userType”, editor: {
type: “select”, config: {
columnKeys: {
optionValue: “CD”, optionText: “NM”
},
options: [
{CD: “M”, NM: “M: Man”},
{CD: “D”, NM: “D: Daughter”},
{CD: “S”, NM: “S: Son”},
{CD: “W”, NM: “W: Wife”}
]
}
}

이렇게 설정했을때,
userType 컬럼에서 enter key 를 입력하면
image

첨부한 이미지처럼 열려있는데요.
space bar 를 눌렀을때는 열렸다가 바로 닫히는 현상이 발생합니다.
inline editor가 text 인 경우는 enter key, space bar 모두 edit 모드로 진입합니다.
image

제 생각으로는 inline editor 가 select 일때
space bar 입력하면
enter key 입력처럼 열린 상태이거나, 아니면 아예 안열려야 할 것 같은데요~
space bar 입력시 enter key 입력처럼 열린상태로 처리하고 싶습니다.
해결방법좀 알려주세요. 감사합니다.