Search code examples
sapui5

rowSettingsTemplate.js Not Found


I am trying to implement row highlights in sap.ui.table.Table but in the Web IDE console, I see this error:

found in negative cache: 'sap/m/rowSettingsTemplate.js' from https://sapui5.hana.ondemand.com/1.46.7/resources/sap/m/rowSettingsTemplate.js: 404 - error undefined

I get the code from this example.


Solution

  • There are two issues:

    1. The namespace for the rowSettingsTemplate node is not properly assigned. Either your default namespace (xmlns="...") points to sap.m or you added incorrectly the prefix e.g. <m: whereas the namespace m points to sap.m. Eitherway, the rowSettingsTemplate should be coming from sap.ui.table.
    2. Another, bigger issue: The aggregation rowSettingsTemplate, as well as the Control sap.ui.table.RowSettings, is only available since UI5 version 1.481. Your current UI5 version is 1.46.7.

    [1] See Changelog, corresponding commit, and What's New in OpenUI5 1.48