Hi Experts,
I'm using macro table of type responsive table inside a dialog. But I'm seeing this navigation arrow at the rightmost end of all the rows.
I am not using the rowpress event. is there any way to remove it through controller or any annotation in the presentation variant? I'm not able to find any property on API reference page which can be used to disable it.
fragment definition:
<core:FragmentDefinition
xmlns="sap.m" xmlns:core="sap.ui.core"
xmlns:table="sap.ui.table" xmlns:macrosTable="sap.fe.macros.table" xmlns:macros="sap.fe.macros">
<Dialog id="changesDialogTable">
<content>
<macrosTable:Table
id="changesTable"
metaPath="/PurchaseOrderChanges/@UI.PresentationVariant"
readOnly="true"
personalization ="false"
isSearchable = "false"
enableAutoColumnWidth = "true"
type ="ResponsiveTable"
disableCopyToClipboard = "true"
beforeRebindTable=".tableRefreshed">
</macrosTable:Table>
</content>
<beginButton>
<Button id="closeButtonTable" text="{i18n>close}" press="onCloseChangesDialogTable" />
</beginButton>
</Dialog>
</core:FragmentDefinition>
Could anyone help please.
Thank you,
Keval
Request clarification before answering.
Hello @Keval13, I found a fix for this.
Update your fragment to use macros:Table instead of macrosTable:Table
<core:FragmentDefinition
xmlns="sap.m"
xmlns:core="sap.ui.core"
xmlns:macros="sap.fe.macros"
... >
<macros:Table
...>
</macros:Table>*Edit: for clarity on where to change it
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 10 | |
| 5 | |
| 5 | |
| 5 | |
| 3 | |
| 3 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.