SAP~UI5 Utilizando uma constante no Expression Binding
Se você quiser passar uma constante no Expression Binding, aqui tem um exemplo muito bom:
<MenuItem icon="sap-icon://create" text="New Root"
press="onMenuItemPressed"
key="NEWR"
startsSection="true"
visible="{ parts: [{value:'xxx'},{path: 'menuTreeModel>type'},
{path: 'globalModel>/editMode'}],
formatter: '.formatter.getEditableMenuContextAdd'}"/>
Veja que o {value:'xxx'} força passar uma constante que neste caso será utilizada em um formatter implementado no App.
Outro exemplo:
<Input width="200px" enabled="{/enabled}" description="{/currencyCode}"
value="{
parts: [
{value: '1.200'},
{value: 'URL'}
],
type: 'sap.ui.model.type.Currency',
formatOptions: {showMeasure: false}
}"/>
Enjoy.
<Input width="200px" enabled="{/enabled}" description="{/currencyCode}"
value="{
parts: [
{value: '1.200'},
{value: 'URL'}
],
type: 'sap.ui.model.type.Currency',
formatOptions: {showMeasure: false}
}"/>
Enjoy.
0 comentários: