Untitled
unknown
javascript
a year ago
1.4 kB
7
Indexable
<mvc:View controllerName="crud.controller.crud" xmlns:html="http://www.w3.org/1999/xhtml" xmlns:mvc="sap.ui.core.mvc" displayBlock="true" xmlns="sap.m"> <Table id="idTable" items="{modelResult>/}"> <headerToolbar> <OverflowToolbar> <Title text="Information" level="H2"/> </OverflowToolbar> </headerToolbar> <columns> <Column id="NomeCol" width="12em"><Text text="Name Surname"/></Column> <Column id="ContactCol" width="12em"><Text text="Contact"/></Column> <Column id="LocalityCol" width="12em"><Text text="Locality"/></Column> <Column id="AddressCol" width="12em"><Text text="Address"/></Column> <Column id="CityCol" width="12em"><Text text="City"/></Column> </columns> <items> <ColumnListItem> <cells> <ObjectIdentifier text="{modelResult/Nome}" class="sapMTableContentMargin"/> <Text text="{modelResult/Cognome}"/> <ObjectIdentifier text="{modelResult/Email}" class="sapMTableContentMargin"/> <Text text="{modelResult/Telefono}"/> <ObjectIdentifier text="{modelResult/Paese}" class="sapMTableContentMargin"/> <ObjectIdentifier text="{modelResult/Citta}" class="sapMTableContentMargin"/> <Text text="{modelResult/Provincia}"/> <ObjectIdentifier text="{modelResult/Indirizzo}" class="sapMTableContentMargin"/> <Text text="s"/> </cells> </ColumnListItem> </items> </Table> </mvc:View>
Editor is loading...
Leave a Comment