F4搜索添加到智能表ui5中

时间:2018-05-29 13:02:08

标签: sapui5

我尝试将 F4 搜索文件配置到UI5中的智能表中。我无法实现它。

如何在智能表SAP UI5中配置 F4 搜索(智能字段)

1 个答案:

答案 0 :(得分:0)

实际上F4适用于SmartFilterBar字段,请检查示例here。 F4 SearchHelp(SHLP)的Fiori字是:Value Help

您可以在UI中提供名为annotation.xml的描述符来配置Value Helps。您可以为每个实体属性分析一个EntitySet,一个要在何时选择值时进行浏览的集合。

在manifest.json中,您可以为模型分配注释并告知注释文件的位置:

"mainService": {
  "uri": <yourServiceUri>,
  "type": "OData",
  "settings": {
    "odataVersion": "2.0",
    "localUri": "localService/metadata.xml",
    "annotations": [
      "annotation0"
    ]
  }
},
"annotation0": {
  "type": "ODataAnnotation",
  "uri": "./annotation0.xml"
}