Sorry in advance if this is a double-post. I've spent 30m googling this with no luck.
I have a layout with limited space and users can select multiple options from a checkbox. I want to show a small summary and when users click on the summary they get the check boxes. I can think of two ways to do this:
Have another field that's a (global?) toggle called something like "IsCheckboxEditModeForFieldWhatever". I can hide the checkbox field when this is 0, and when users click on the summary I can set that to 1, and select the field. Then when the checkbox is saved I can set the toggle back to zero.
I could use a new window with a new layout and a card, but it seems like overkill
Is there an easy way to just say "hide when the status of self = not in focus" or something?
You can use a Button Bar with a Popover. The Button bar Name can be calculated from the option field. When you click the Button the popover opens with the option field.
I see two fields here. The first is a list field. The second is a calculation field that transforms the list into comma-delimited text. The list field has a hide condition based on a global variable. An on enter script trigger in the summary field fires a script that sets the global variable and navigates to the list field. An on exit script trigger in the list field fires a script that clears the global variable.