on ‎2020 Feb 12 4:02 PM
Request clarification before answering.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
in manifest
"navigation" : "none"
you can write.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 5 | |
| 4 | |
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.