cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How to hide navigation arrow on table in Fiori Element LIST Report

9,534

I'm trying to disable the little arrow on right. Cannot find the right annotation and this one not available in the SAPUI5 Visual editor either

Accepted Solutions (1)

Accepted Solutions (1)

Joseph_BERTHE1
Active Contributor

Hello,

You have to simple delete le pages section in the manifest :

Regards,

Joseph

0 Likes

Thanks, I did that already and it works but it is not a solution I was looking for. Question is what if I need navigation on a button clicks not on table row click.

Regards,

Laeeq Siddique

Answers (4)

Answers (4)

anubhavpandey
Product and Topic Expert
Product and Topic Expert

Hi,

Please refer to the SAPUI5 demo kit documentation.

https://sapui5.hana.ondemand.com/sdk/#/topic/8bd546e27a5f41cea6e251ba04534d70

By default the navigation is active for table. In order to deactivate the navigation indicator remove the entire pages block.

Richa08
Newcomer
0 Likes

in manifest

"navigation" : "none"

you can write.

VincentBloem
Participant
0 Likes

Hi,

I had the same issue and I solved it like this:

onInit: function () {
// Disable navigation
this.getView().byId("listReport").getTable().attachUpdateFinished(function (oEvent) {
for (var j = 0; j < oEvent.getSource().getItems().length; j++) {
oEvent.getSource().getItems()[j].setType(sap.m.ListType.Inactive);
}
});  },

It works fine!

0 Likes

Thanks, I did that already and it works but it is not a solution I was looking for. Question is what if I need navigation on a button clicks not on table row click.

Regards,

Laeeq Siddique

maheshpalavalli
Active Contributor

I would really suggest you not to go in that direction as it's a guideline in fiori ux, arrow mark suggests that the table can be navigated. So your users will also get accustomed to it and if the arrow mark is not there then it means no navigation.