Issue with Visibility Conditions for Panel
#6
(2019-06-24, 10:47)Mr. V Wrote:
(2019-06-23, 22:14)bsoriano Wrote: If I could bother you (or anyone who might be reading this and knows) some more.  If I have multiple widgets, all with content, how would I go about showing just one at a time? Wouldn't the visibility conditions make it so that multiple groups and panels are shown? Is this something that could be done with conditional animations? Unfortunately, this is something that I know very little about.
Hi bart,

Not sure if this is the most efficient method, you could use set a property based on navigation.

Visibility for the 1st widget
Code:
<visible>String.IsEmpty(Window(home).Property(WidgetFocus)</visible>

Navigate to 2nd widget
Code:
<onup>SetProperty(WidgetFocus,1,home)</onup>

Visibility for the 2nd widget
Code:
<visible>String.IsEqual(Window(home).Property(WidgetFocus),1)</visible>

Navigation to 1st widget
Code:
<ondown>ClearProperty(WidgetFocus,Home)</ondown>

@Mr. V, thank you so much! I will try this and see how it goes.

Regards,

Bart
Reply


Messages In This Thread
RE: Issue with Visibility Conditions for Panel - by bsoriano - 2019-06-24, 16:01
Logout Mark Read Team Forum Stats Members Help
Issue with Visibility Conditions for Panel0