I've been trying to show a MarkupGrid node and a RowList node in a LayoutGroup, but only the first item listed in XML shows up.
<LayoutGroup
id="mainContainer"
layoutDirection = "vertical"
horizAlignment = "left"
vertAlignment = "top"
itemSpacings = "[0,0]"
translation="[0,78]"
>
<MarkupGrid
id="carousel"
itemComponentName="UIFeaturedItem"
itemSize="[1280,500]"
numRows="1"
rowHeights="[500]"
horizFocusAnimationStyle="FixedFocusWrap"
drawFocusFeedback ="false"
itemSpacing="[0,0]"
fixedLayout="false"
/>
<RowList
id="collections"
itemComponentName="UIFeaturedItem"
itemSize="[1280,300]"
numRows="9"
drawFocusFeedback ="true"
rowFocusAnimationStyle="FixedFocusWrap"
horizFocusAnimationStyle="fixedFocus"
showRowLabel="[true]"
showRowCounter="[false]"
/>
</LayoutGroup>
1. Is it possible to do this?