I have a daily messages app for my staff in which I want them to acknowledge that they have read the message. I do not have a need to go and look at the REF_ROW detailed view.
Is there a way to remove or hide the ‘View’ button and just show the ‘Add’ button ?
The option you have is to make the View localization to "" (blank) based on the view you want it to be hidden.
For example, if your view is called A BEAUTIFUL DASHBOARD, this should be inside UX → Localize → View
(Make sure to activate the Expression Assistant instead of Text)
IF(
CONTEXT(VIEW)="A BEAUTIFUL DASHBOARD",
"",
"View" /*You can put whatever you want here btw, like "View All"*/
)
This is a workaround, there is no option to hide the button, just to make it look like it’s not there
Nice workaround ! I learnt something today
Strange thing is being able to remove/change name on the “Add” button, which is an action attached to the table, but not the view button…
Yeah, for Add you need to change the Display name of the action so that it’s more like “Add item” for example or make the Only if this condition is true to False to hide it. You can use CONTEXT() to make it false just in the view where you want it to be hidden
This works nicely for some of the system text.
I am trying to customize the text of “Add” and “View” buttons on an inline table view.
You’d think that since “View” is customizable this way, its neighbor “Add” would also be available in the Localize area…but…doesn’t appear so.
In case I have many Inline REF_ROW in a detail view/page but just want to hide the “View” button of one them, how could I do it.
I have many inline REF_ROW in a detail view/page, but one of them is just for display only, so I want to hide all the button of that specific inline REF_ROW. As “New/Add” button is set via different actions, I can hide it separately. But I still don’t know how to hide the “View” button separately. (Just hide it all or show it all in a same view/page)
It is not possible to hide the View button without hiding the column altogether. To hide the column, disable Show? for the column or give it a Show? expression that evaluates to FALSE.