代码之家  ›  专栏  ›  技术社区  ›  softshipper

如何缩进按钮?[已关闭]

  •  -2
  • softshipper  · 技术社区  · 6 年前

    我有以下SAPUI5应用程序:

    [Codepen](https://codepen.io/bifunctor/project/editor/XaOapY#)
    

    我想将查询按钮缩进相同的like from input。

    如何做到这一点?

    2 回复  |  直到 6 年前
        1
  •  1
  •   santhosh    6 年前

    这是一种黑客行为。只需将空标签关联添加到 按钮

    <Label text="Payers"></Label>
    <Input id="payerFrom" showSuggestion="true" placeholder="From"
       required="true">
    </Input>
    <Input id="payerTo" showSuggestion="true" placeholder="To"
       required="true">
    </Input>
    <Label text=""></Label>
    <Button text="Query" type="Emphasized" press="queryData">
       <layoutData>
          <layout:GridData span="XL6 L6 M6 S12"/>
       </layoutData>
    </Button>
    
        2
  •  0
  •   Ankit    6 年前

    您可以使用GridData的indent属性。 试试这个:

    <Label text="Payers"></Label>
    <Input id="payerFrom" showSuggestion="true" placeholder="From"
       required="true">
    </Input>
    <Input id="payerTo" showSuggestion="true" placeholder="To"
       required="true">
    </Input>
    <Button text="Query" type="Emphasized" press="queryData">
       <layoutData>
          <layout:GridData span="XL6 L6 M6 S12" indent="L1 M1 S0"/>
       </layoutData>
    </Button>