如何select(focus)webix datatable的row/cell,这样就可以移动rows/cells上的箭头了?

How to select (focus) row/cell of the webix datatable, so you can move the arrows on the rows/cells?

这里有这样一段代码-webix数据table和按钮https://snippet.webix.com/bnxnf7x4 当你点击按钮时,我们select第一个单元格或行(本质不重要,单元格设置为select:"cell"为行-select : "row") 在 table 中,但无法移动 up/down 箭头。 同时,如果在单元格中点击鼠标,可以移动方向键

问题是如何实现 table cell/row 的 selection 以便您可以滚动(移动)table cells/rows使用 up/down 箭头

您需要将焦点移至目标小部件。只有具有焦点的小部件才会对导航键做出反应。

click: function() {
    $$("myList").select(1, "rank", false);
    webix.UIManager.setFocus($$("myList"));
}

https://snippet.webix.com/074rxh2z