Skip to content

Instantly share code, notes, and snippets.

@pandu536
Created August 13, 2014 08:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pandu536/282082378e394146a733 to your computer and use it in GitHub Desktop.
Save pandu536/282082378e394146a733 to your computer and use it in GitHub Desktop.
sap.ui.controller("greenfield_refinery.launchdashboard", {
/**
* Called when a controller is instantiated and its View controls (if available) are already created.
* Can be used to modify the View before it is displayed, to bind event handlers and do other one-time initialization.
* @memberOf greenfield_refinery.launchdashboard
*/
// onInit: function() {
//
// },
/**
* Similar to onAfterRendering, but this hook is invoked before the controller's View is re-rendered
* (NOT before the first rendering! onInit() is used for that one!).
* @memberOf greenfield_refinery.launchdashboard
*/
// onBeforeRendering: function() {
//
// },
/**
* Called when the View has been rendered (so its HTML is part of the document). Post-rendering manipulations of the HTML could be done here.
* This hook is the same one that SAPUI5 controls get after being rendered.
* @memberOf greenfield_refinery.launchdashboard
*/
// onAfterRendering: function() {
//
// },
/**
* Called when the Controller is destroyed. Use this one to free resources and finalize activities.
* @memberOf greenfield_refinery.launchdashboard
*/
// onExit: function() {
//
// }
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment