<mvc:View
	class="sapUiSizeCompact"
	controllerName="sap.ui.core.sample.odata.v4.FieldGroups.FieldGroups"
	xmlns="sap.m"
	xmlns:core="sap.core"
	xmlns:f="sap.ui.layout.form"
	xmlns:mvc="sap.ui.core.mvc">
	<f:SimpleForm binding="{path: '/ContactList(42010aef-0de5-1eea-af8f-5bce865f0879)',
			parameters : {$$patchWithoutSideEffects : true}}"
			editable="true" id="contact" layout="ColumnLayout" title="Field Groups"
			validateFieldGroup="onValidateFieldGroup">
		<Label labelFor="firstName" text="First Name"/>
		<Input fieldGroupIds="nameGroup" id="firstName" value="{FirstName}"
			description="{FirstName}"/>
		<Label labelFor="lastName" text="Last Name"/>
		<Input fieldGroupIds="nameGroup" id="lastName" value="{LastName}"
			description="{LastName}"/>
		<Label labelFor="emailAddress" text="Email Address"/>
		<Input fieldGroupIds="emailAddressGroup" id="emailAddress" value="{EmailAddress}"/>
	</f:SimpleForm>
</mvc:View>
