Please enable JavaScript.
Coggle requires JavaScript to display documents.
SAPUI5 - Tutorials - Coggle Diagram
SAPUI5 - Tutorials
Views
-
-
-
Conventions
-
-
-
-
Other XML namespaces use the last part of the SAP namespace as alias (for example, mvc for sap.ui.core.mvc)
Models
-
-
Translatable Texts
Conventions
-
-
-
Resource bundle values can contain parameters like {0}, {1}, {2}, …
Never concatenate strings that are translated, always use placeholders
-
HTML5
-
Balises
-
En-tête
-
<meta /> : métadonnées de la page web (charset, mots-clés...)
-
-
-
-
Modules
Conventions
Use sap.ui.define for controllers and all other JavaScript modules to define a global namespace. With the namespace, the object can be addressed throughout the application
Use sap.ui.require for asynchronously loading dependencies but without declaring a namespace, for example code that just needs to be executed, but does not need to be called from other code
-
-
Components
-
Conventions
-
Together with all UI assets of the app, the component is located in the webapp folder
-
-
-
-
-
Bootstrapping : to use SAPUI5 features in your HTML page, you have to load and initialize the SAPUI5 library
SAPUI5 is a JavaScript library that can either be loaded from the same Web server where the app resides, or from a different server
-