SAPUI5-コントロール
UI5アプリケーションの開発中に使用できるさまざまなタイプのUIコントロールがあります。これらのコントロールを使用すると、UI5アプリケーションにボタン、テーブル、画像、レイアウト、コンボボックス、およびその他のさまざまなコントロールを追加できます。
一般的な制御タイプは次のとおりです。
- シンプルなコントロール
- 複雑なコントロール
- UX3コントロール
- Dialogs
- Layout
画像制御
Var image = new sap.ui.commons.Image();
Image.setSrc(“Image1.gif”);
Image.setAlt(“alternat.text”);
コンボボックス
コンボボックスを使用して、事前定義されたエントリを提供できます。
プロパティ-アイテム、selectedKey
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());
}
});
シンプルなボタンコントロール
attachPresssは、プッシュアクションにイベントハンドラーを割り当てます。
Var oButton = new sap.ui.commons.Button ({text : “Click”,
Press: oController.update
});
オートコンプリート制御
入力した値をオートコンプリートします。
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}));
}
テーブルコントロールボックス
これはsap.ui.tableから派生し、各テーブルには列が含まれています。
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”
})