English 中文(简体)
SAP UI5 - Controls
  • 时间:2024-03-26 00:04:34

SAP UI5 - Controls


Previous Page Next Page  

在开发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