Hi Folks,
Greetings !!
I'm trying to have sap.m.TileContainer as a content(aggregation) of one of the IconTabFilter of IconTabBar, but unfortunately I'm not able to make it.
When i add table control or any other control inside the IconTabFilter, its working as expected, But the moment I put TileContainer inside the IconTabFilter under content aggregation, tiles are not showing up.
<IconTabBar class="iconTabBarPaddingTop" id="idIconTabBarSeparatorNoIcon"
expanded="false" select="onSelectTab" expandable="true">
<items>
<IconTabFilter icon="sap-icon://hint" iconColor="Positive">
</IconTabFilter>
<IconTabSeparator icon="" />
<IconTabFilter icon="sap-icon://attachment" iconColor="Neutral"
count="3">
<!-- <Text text="Attachments go here ..." /> -->
</IconTabFilter>
<IconTabFilter icon="sap-icon://notes" count="12" showAll="false">
<!-- <Text text="Notes go here ..." /> -->
</IconTabFilter>
<IconTabSeparator icon="" />
<IconTabFilter icon="sap-icon://group" iconColor="Negative" showAll="false">
<!-- <Text text="People content goes here ..." /> -->
<Table id="idProductsTable" inset="false" items="{/TileCollection}">
<!-- <headerToolbar>
<Toolbar>
<Label text="Products"></Label>
</Toolbar>
</headerToolbar> -->
<columns>
<Column width="12em">
<Text text="Product" />
</Column>
</columns>
<items>
<ColumnListItem>
<cells>
<Text text="{number}" />
</cells>
</ColumnListItem>
</items>
</Table>
</IconTabFilter>
</items>
<content>
<TileContainer id="container" tileDelete="handleTileDelete" tiles="{/TileCollection}">
<StandardTile icon="sap-icon://{icon}" type="{C}" number="{number}" numberUnit="{numberUnit}"
title="{title}" info="{info}" infoState="{infoState}" /> </TileContainer>
<Text text="Notes go here ..." />
<Label text="asfsafasfsa"></Label>
</content>
</IconTabBar>
Please help.