我对SAPUI5/OpenUI5
中的产品列表进行了搜索查询。
当我的搜索查询产生单个项目时,该应用程序是否会自动触发将选择该项目的事件?
答案 0 :(得分:0)
https://sapui5.netweaver.ondemand.com/docs/api/symbols/sap.m.List.html 搜索“火” - >然后你会找到像fireUpdateStartet(取代fireSelect)的方法 - > https://sapui5.netweaver.ondemand.com/docs/api/symbols/sap.m.ListBase.html#fireUpdateStarted
答案 1 :(得分:0)
使用updateFinished您可以实现为:
oTable.attachUpdateFinished(function(oEvent) {
//get the length of the Table
if (oEvent.getSource().getItems().length == 1)
//fire Selection on the ColumnListItem if there was only one Item
oEvent.getSource().getItems()[0].firePress();
});
让我知道这是否有帮助。