SAP UI5 Tutorial
SAP UI5 Useful Resources
Selected Reading
- Creating a Project in Web IDE
- SAP UI5 - Mobile
- SAP UI5 - Theming
- SAP UI5 - Extending Applications
- SAP UI5 - Notepad Controls
- SAP UI5 - Localization
- SAP UI5 - Modularization
- SAP UI5 - Design Patterns
- SAP UI5 - Data binding
- SAP UI5 - Controls
- SAP UI5 - Creating a UI5 Project
- SAP UI5 - Developer Studio
- SAP UI5 - Views
- SAP UI5 - MVC Concept
- SAP UI5 - Development Kit
- SAP UI5 - Control Libraries
- SAP UI5 - Key Components
- SAP UI5 - Architecture
- SAP UI5 - Overview
- SAP UI5 - Home
SAP UI5 Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
SAP UI5 - Controls
SAP UI5 - Controls
在开发5号企业申请时,你可以使用不同类型的企业社会责任控制。 这些控制使你能够添加一个顿子、桌子、图像、布局、 com子和5号倡议应用的其他各种控制。
共同控制类型包括:
Simple Controls
Complex Controls
UX3 Controls
Dialogs
Layout
Image Control
Var image = new sap.ui.commons.Image(); Image.setSrc(“Image1.gif”); Image.setAlt(“alternat.text”);
Combo Box
你们可以使用bo子提供预先界定的条目。
不动产——选定项目 关键
Var oComboBox2 = new sap.ui.commons.ComboBox (“ComboBox”,{ Items:{path:”/data”, Template:oItemTemplate, filters:[oFilter]}, Change: function(oEvent){ Sap.ui.getCore(). byId(“field”).setValue( oEvent.oSource.getSelectedKey()); } });
Simple Button Control
使用辅助器指派活动手推动行动。
Var oButton = new sap.ui.commons.Button ({text : “Cpck”, Press: oController.update });
Autocomplete Control
完成输入值。
Var uiElement = new sap.ui.commons.AutoComplete({ Tooltip: ”Enter the product”, maxPopupItems: 4 }); For (var i = 0; i<aData.lenght; i++){ uiElement.addItem(new sap.ui.core.ListItem( {text: aData[i].name})); }
Table Control Box
表中各列一栏。
Var oTable = new sap.ui.table.Table({ Columns: [ New sap.ui.table.Column({ Label: new sap.ui.commons.lable({ text: “First Column”}), Template: new sap.ui.commons.TextView({ text: “{Firstcolumn}” }), Width: “120px” })Advertisements