如何让 caph 列表中的焦点项目始终位于第一位?

How to get the focused item within a caph list be always in first position?

使用 Caph 3.1.0,我在一个 caph 列表中有一个包含 n 个可聚焦元素的列表。

滚动时,我希望焦点元素始终位于位置 1。例如整个列表滚动而不是光标。这样,用户在按下箭头键时始终会注视屏幕上的同一位置。

我目前拥有的:

el1.focused el2 el3 el4 ...
then hit right arrow key
el1 el2.focused el3 el4 ... (the user's eyes have to move to the right to see the focused element)

我想要什么:

el1.focused el2 el3 el4 ...
then hit right arrow key
el2.focused el3 el4 el5 ... (the user's eyes did not have to move, the entire list scrolled)

Caph 可以吗?我在文档中找不到任何内容。

提前致谢

回复我自己以防万一 "helps" 其他人:

我写信给 caph@samsung.com,这是他们的回复: "The current version(3.1.x) caph-list does not support auto always focus the most left item. Users can try to use "on-scroll-finish" 滚动完成时聚焦最左边的项目的事件。"

此致