hana-cli
Version:
HANA Developer Command Line Interface
21 lines (19 loc) • 543 B
JavaScript
;
sap.ui.define([
"sap/hanacli/tables/controller/App.controller"
], function (AppController) {
/**
* Basic UI Controller for table views
* Initializes the app and sets up schema filtering
*/
return AppController.extend("sap.hanacli.tables.controller.basic-ui", {
/**
* Controller initialization
* Sets up the filter for Schema column
*/
onInit: function () {
this.onAppInit();
this.setFilterAsContains("Schema");
}
});
});