<core:FragmentDefinition
	xmlns="sap.m"
	xmlns:core="sap.ui.core"
	xmlns:layout="sap.ui.layout">
	<layout:VerticalLayout>
		<Panel headerText="A table with a built-in action button row" expandable="true" expanded="true" backgroundDesign="Solid" content="{$this>content}">
			<!-- for all 'sap.ui.core.Item' given from the application into the "content" aggregation, one Button will be rendered in here, with the text bound to the "text" property of the outer control -->
			<Button press=".firePress({ itemText: ${$source>text} })" text="{$this>text}" />
		</Panel>
		<!-- the aggregations items and columns will be forwarded directly to this inner table -->
		<Table id="innerTable"/>
	</layout:VerticalLayout>
</core:FragmentDefinition>