ValueHelpDialog 的空结果消息是否可以以某种方式自定义?
Is the empty result message of a ValueHelpDialog customizable somehow?
我必须自定义 ValueHelpDialog 的搜索结果的空结果消息。这有可能吗?
您可以尝试通过 getTableAsync
从值帮助对话框中获取 table 控件:
this._oValueHelpDialog.getTableAsync().then(function (oTable) {
oTable.setNoData("No Data text"); // sap.ui.table.Table
});
API reference: sap.ui.comp.valuehelpdialog.ValueHelpDialog#getTableAsync
我必须自定义 ValueHelpDialog 的搜索结果的空结果消息。这有可能吗?
您可以尝试通过 getTableAsync
从值帮助对话框中获取 table 控件:
this._oValueHelpDialog.getTableAsync().then(function (oTable) {
oTable.setNoData("No Data text"); // sap.ui.table.Table
});
API reference: sap.ui.comp.valuehelpdialog.ValueHelpDialog#getTableAsync