
You can implement a custom tile type.
| Contract | Use |
|---|---|
| bag | Access property bags, and read or write properties in these bags. The properties in these bags will be translated and retain personalization. |
| configuration | Get property values. |
| writeConfiguration | Set property values. |
| configurationUi | Provide a tile-specific configuration UI and related functionality. |
| preview | Display a tile in preview mode. |
| refresh | Handle refresh events. |
| search | Provide tile-specific search keywords, and highlight search terms in the UI. |
| url | Convert relative URLs into absolute ones, and return the tile catalog's system. |
| visible | Handle the visibility of a tile in a page. |
(function () {
"use strict";
sap.ui.controller("someController", {
onInit: function () {
var oChipApi = this.getView().getViewData().chip;
...
},
...
});
}());