<mvc:View xmlns:mvc="sap.ui.core.mvc" xmlns:core="sap.ui.core"
	visible="true" xmlns:f="sap.ui.layout.form" xmlns="sap.m" class="sapUiSizeCompact">
	<f:SimpleForm id="idRequestOptionsForm" maxContainerCols="1"
		editable="true" labelMinWidth="300" layout="ResponsiveGridLayout"
		labelSpanL="4" labelSpanM="4" labelSpanS="4" emptySpanL="2"
		emptySpanM="2" emptySpanS="2" columnsL="1" columnsM="1" width="100%">
		<f:content>
			<Label id="idSourceLabel" />
			<Input id="idSource" editable="true" showValueHelp="true"
				showSuggestion="true" suggestionItems="{/Objects}"
				change="handleChangeForSourceAsPromise" valueHelpRequest="handleShowValueHelpRequest"
				suggest="handleSuggestionsForSource">
				<core:Item key="{key}" text="{name}" />
			</Input>
			<Label id="idEntityLabel" />
			<Select id="idEntity" visible="true" enabled="true" width="100%"
				maxWidth="100%" type="Default" autoAdjustWidth="false"
				change="handleChangeForEntity" items="{/Objects}">
				<core:Item key="{key}" text="{name}" />
			</Select>
			<Label id="idOptionalPropertyLabel" visible="false" />
			<Select id="idOptionalProperty" visible="false" enabled="true"
				width="100%" maxWidth="100%" type="Default" autoAdjustWidth="false"
				change="handleChangeForOptionalProperty" items="{/Objects}">
				<core:Item key="{key}" text="{name}" />
			</Select>
			<Label id="idSelectPropertiesLabel" />
			<MultiComboBox id="idSelectProperties" value="" width="100%"
				enabled="true" visible="true" valueState="None" editable="true"
				selectionFinish="handleChangeForSelectProperty" items="{/Objects}">
				<core:Item key="{key}" text="{name}" />
			</MultiComboBox>
			<Label id="idOptionalRequestFieldLabel" visible="false" />
			<Select id="idOptionalRequestField" visible="false" enabled="true"
				width="100%" maxWidth="100%" type="Default" autoAdjustWidth="false"
				change="handleChangeForOptionalRequestField" items="{/Objects}">
				<core:Item key="{key}" text="{name}" />
			</Select>
			<Select id="idOptionalLabelDisplayOptionType" visible="false"
				enabled="true" width="100%" maxWidth="100%" type="Default"
				autoAdjustWidth="false" change="handleChangeForOptionalLabelDisplayOptionType"
				items="{/Objects}">
				<core:Item key="{key}" text="{name}" />
			</Select>
			<Label id="idOptionalSelectedPropertyLabel" visible="false">
			</Label>
			<Input id="idOptionalSelectedPropertyLabelText" editable="true"
				visible="false" change="handleChangeForOptionalSelectedPropertyLabelText"
				showSuggestion="true" suggestionItems="{/Objects}" suggest="handleSuggestionsForSelectedPropertyLabel">
				<core:Item key="{key}" text="{name}" />
			</Input>
		</f:content>
	</f:SimpleForm>
</mvc:View>