最终观点应该是这样的:
view.xml中的代码如下:
<VBox height="90px">
<Label text="{i18n>FISCALYEAR_LABEL}" mandatory="mandatory"/>
<Select id="FiscalYear"
items="{
path: '/FiscalYearSet',
sorter: { path: 'FiscalYearID' }
}">
<core:Item key="{FiscalYearID}" text="{FiscalYearNum}" />
</Select>
<ComboBox
items="{
path: '/FiscalYearSet',
sorter: { path: 'FiscalYearID' }
}">
<core:Item key="{FiscalYearID}" text="{FiscalYearNum}" />
</ComboBox>
</VBox>
我设置了一个属性&#39;强制=&#34;强制性&#34;&#39;,但它不起作用。
答案 0 :(得分:2)
<Label text="{i18n>FISCALYEAR_LABEL}" required='true'/>
required
是 sap.m.InputBase 的属性之一,其默认boolean
值设置为false