Please enable JavaScript.
Coggle requires JavaScript to display documents.
UI5Controls - Coggle Diagram
UI5Controls
XML VIEW
- this.getView() gets the object of the view
- this.getView().byId() gets the Id of the UI control
- Once Id is obtained getter and setter methods can be used
-
- UI Control Class always starts in Caps
- Aggregation inside the UI Control Class always starts with small letters.
- Child Aggregation always follow same NameSpace as parent
EX:xmlns:f= "sap.ui.layout.form<f:SimpleForm><f:content>
</f:content>
</f:SimpleForm>
Here Control Class has capital S, "content is the aggregation inside SimpleForm hence its start with small letter, it is cast windned hence the NameSpace of "content" is same as name space of SimpleForm
JS View
- sap.ui.getCore() obtains run time instance of the application
-
- Once Id is obtained getter and setter methods can be used
-
-