SAP UI5 aggregation field type

           <aggregation cardinality="0..1" name="toolbar" type="sap.ui.core/Control">
                <documentation>Aggregation that displays tool bar.
                If the device is desktop/tablet, we use tool bar, if it is phone, we use HBox with simple form. 
                </documentation>
           </aggregation>

在Note.js里面,如果是phone screen,把两个select的宽度改成100%:

           this._noteType.setWidth("100%");
           this._noteTypeForm.addContent(this._noteType);
          
           this._noteLangForm.addContent(this._noteLangLabel);
           this._noteLanguage.setWidth("100%");
           this._noteLangForm.addContent(this._noteLanguage);

Sent: Tuesday, January 13, 2015 11:27 AM

aggregation设成sap.ui.core/Control可以,刚刚build的可能不是最新的:

SAP UI5 aggregation field type

上一篇:SAP UI5 Focus related


下一篇:在WebIDE里导入SAP Fiori应用