cancel
Showing results for 
Search instead for 
Did you mean: 

SAPUI5: redundant empty column in sap.m.table (Only in Launchpad)

Former Member
0 Kudos

Hi experts,

I have a problem. When I test my app in web ide, all works fine. But when i deploy it to Fiori launchpad, In my tables (sap.m.table) i get a new column in the beginning, which broke my UI in mobile version. This is the <td> of this column from html:

Maybe somebody faced with issue? Do you know how to remove it?

Best Regards,

Mikhail

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member227918
Active Contributor
0 Kudos

paste your table declaration code.

Former Member
0 Kudos
<Table items="{xxxxx}" headerText="{xxxx}">
<columns>
<Column width="40px" visible="{path:'Status', formatter: '.formatColumnVisibilityForDevices'}">
</Column>
<Column minScreenWidth="Tablet" demandPopin="true" >
<header><Label text=""/></header>
</Column>
<Column minScreenWidth="Tablet" demandPopin="true" hAlign="Left" wrapping="true">
<header><Label text="{i18n>xxx}"/></header>
</Column>
<Column minScreenWidth="Tablet" demandPopin="true" hAlign="Left">
<header><Label text="{i18n>xxxxx}" textAlign="Left"/></header>
</Column>
<Column minScreenWidth="Tablet" demandPopin="true" hAlign="Left">
<header><Label text="{i18n>xxxxx}"/></header>
</Column>
</columns>
<ColumnListItem vAlign="Middle">
<cells>
<Button visible="false"/>
<Text text="{xxxx}"/>
<Text text="{path:'xxxx', formatter: '.xxxxx'}"/>
<Text text="{path:'x>xxx', formatter: '.formatApprovalStatus'}"/>
<Text text="{path:'xxx>xxx', type: 'sap.ui.model.type.DateTime', formatOptions: { pattern: 'MMMM dd, yyyy', UTC: true}, formatter: '.xxxxx'}"/>
</cells>
</ColumnListItem>
</Table>
former_member227918
Active Contributor
0 Kudos

what happens if you remove hardcoded width for first col i.e. width="40px" and scond if you remove minScreenWidth property. just remove and check if any significant difference.