天天看點

SAP UI5 aggregation field typeSent: Tuesday, January 13, 2015 11:27 AM

<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 typeSent: Tuesday, January 13, 2015 11:27 AM

繼續閱讀