我在 Window 中有一个 ItemSelector 组件。我已经实现了一个搜索功能,可以根据用户的键盘输入动态查找匹配的条目。
现在我只想在 ItemSelector 中突出显示/聚焦此类项目。
我正在寻找类似的东西:
// when the search returned a result and got the related index in the store
function onSearchPerformed(index) {
var cmp = this;
cmp.itemSelector.setSelected(index); // here I'd be highlighting the entry
}
例子
想象一个简单的 ItemSelector 像这样从网络上获取的。
用户键入“Delaw”,我的搜索功能检测到有一个名为 Delaware 的条目,它位于商店的第 3 位。
我要做的就是以编程方式突出显示行/条目“特拉华”,就像您单击它一样。