on 2017 Mar 29 6:32 AM
Hi All,
I want to display data in a table but I don't want to show any header .A header should be completely hidden.
Is there any property to do that??
Here's my code,
<Table id="idcompallowancetable" items="{/Added_AllowancesSet}">
<columns id="idtablecomp" >
<Column demandPopin="true">
<Label text="" />
</Column>
<Column demandPopin="true">
<Label text="" />
</Column>
Please suggest.
You can just not declare any column data? It worked for me. Like:
<Table>
<columns>
<Column></Column>
<Column></Column>
</columns>
<items>
<ColumnListItem>
<cells>
<Text text="Column 1" />
<Text text="Column 2" />
</cells>
</ColumnListItem>
</items>
</Table>
Which displays:
Column 1 | Column 2
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Lalitha,
Please have a look at Table properties in SAPUI5 Explored. We have a property for column visibility. Hope that is what you are looking for.
Regards,
Srinivasan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
75 | |
10 | |
10 | |
10 | |
10 | |
9 | |
8 | |
7 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.