Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
i have a problem:
on my Dashboard, there are two minimized Tableboxes (I hope, the translation is correct) and a Listbox.
They are named LB14, TB03 and TB04.
Starting the Dashboard - TB03 is maximized and TB04 is minimized.
Is it possible (if yes: where and how to do it please ) that when a user selects something in the listbox, TB04 is maximized and TB03 minimized and when the selection is removed, again TB03 is maximized and TB04 minimized?
Thank you
Peter
Hi Peter,
Is it an option to just hide the tablebox instead of minimize?
If so, you can use the following formula:
if(GetSelectedCount(<field in lB1>),1,0)
Past this in the table box properties (tab layout --> show conditional)
kind regards,
Bert
right click on the sheet ->Trigger->Add Action->layout->Restore Object->give the Object id
Hi Peter,
Is it an option to just hide the tablebox instead of minimize?
If so, you can use the following formula:
if(GetSelectedCount(<field in lB1>),1,0)
Past this in the table box properties (tab layout --> show conditional)
kind regards,
Bert
Hi Bert,
thank you very much.
Yes, i like this solution
It is much better than my own idea.
Peter