2013-08-23 3 views
1

* 및 제목 지불 방법 사이에는 공백이 있습니다.SAPUI5의 필수 *와 레이블 사이에 공백을 제거하십시오.

나는 다음과 같은 코드를 사전에

new sap.ui.commons.form.FormElement({ 
    label: "Payment Method", 
    fields: [ 
     new sap.ui.commons.ComboBox("PaymentMethod", { 
      items : [ 
       new sap.ui.core.ListItem("PaymentMethod1", { text: "Wire" }), 
       new sap.ui.core.ListItem("PaymentMethod2", { text: "ACH" }) 
      ], 
      required:true, 
     }) 
    ], 
    layoutData: new sap.ui.commons.layout.ResponsiveFlowLayoutData({ 
     linebreak: true, 
     margin: true 
    }) 
}) 

감사를 사용하고 있습니다.

답변

1

변화

.sapUiGridLabel > .sapUiLbl.sapUiLblReq:before { 
    color: #006CA7; 

    content: "*"; 

    font-size: 20px; 

    font-weight: bold; 

    padding-right: 0px; 

    vertical-align: middle; 

} 
과 CSS
관련 문제