<mvc:View controllerName="testdata.complexsyntax" xmlns:core="sap.ui.core"
	xmlns:mvc="sap.ui.core.mvc" xmlns="sap.m" xmlns:table="sap.ui.table"
	xmlns:html="http://www.w3.org/1999/xhtml">
	<html:h2>
		<Label text="Hello Mr. {path:'/singleEntry/firstName', formatter:'.formatter.name'}, {/singleEntry/lastName}"></Label>
	</html:h2>
	<table:Table rows="{/table}">
		<table:columns>
			<table:Column>
				<Label text="Name"></Label>
				<table:template>
					<Input value="{path:'gender', formatter:'.formatter.gender'} {firstName}, {lastName}"></Input>
				</table:template>
			</table:Column>
			<table:Column>
				<Label text="Birthday"></Label>
				<table:template>
					<Input value="{parts:[{path:'birthday/day'},{path:'birthday/month'},{path:'birthday/year'}], formatter:'.formatter.date'}"></Input>
				</table:template>
			</table:Column>
		</table:columns>
	</table:Table>
	<html:h2>
		<Label text="A type test: {path:'/singleEntry/amount', type:'sap.ui.model.type.Float', formatOptions: { minFractionDigits: 1}} EUR"></Label>
	</html:h2>
</mvc:View>