更改 SAPUI5 中搜索的无数据文本
您只需要使用 noDataText 属性即可解决您的需求。
您有两个选项,您可以更改控制器中的内容,也可以更改 XML 中的内容。
选项 1
在 init 方法中调用 setNoDataText 方法
this.byId(“<Your Id>”).setNoDataText(“<Your custom text>”)
选项 2
在 XML 中添加 noDataText 属性
<List noDataText="<Custom text>" />
广告
您只需要使用 noDataText 属性即可解决您的需求。
您有两个选项,您可以更改控制器中的内容,也可以更改 XML 中的内容。
选项 1
在 init 方法中调用 setNoDataText 方法
this.byId(“<Your Id>”).setNoDataText(“<Your custom text>”)
选项 2
在 XML 中添加 noDataText 属性
<List noDataText="<Custom text>" />