How to make a hide/unhide data button

Hi guys,

I need the information to be shown in the app only if you click a Hide/Unhide button in the Detail View.
So if you click this button once again it will hide the information.

How can I make that?

1 2 194
2 REPLIES 2

dedmax
Participant I

I have same question, anyone can help how to make button like this picture 

Screenshot_20.png

 

Hi vadimaty,

 

You can for example create a new column [Hide or Unhide] that will be used for selection. Set it as enum buttons with Hide/Unhide options.

In EditableIf option of that column, set this formula : Context("ViewType") <> "Form"

As initial values, set "Unhide".

In your detail view, enable "quickedit" for that column. 

baba_sawane_1-1699966489672.png

 

Then, for each column you  want to be affected by the selection, add a ShowIf formula : 

and([Hide or Unhide] = "Unhide",  Context("ViewType") <> "Form") 

The menu will look like this in Detail view (i added icons with Format Rules and the column name is an emoji) :

baba_sawane_0-1699966343301.png

Hope it helps.

 

 

 

Top Labels in this Space