
Hello,
is there a possibilty to minimize and maximize the cards in a screen? I have added a scrollable screen and there I can add different chapters.
But is there a possibilty to minimize the cards? Such as my example in the Screenshot? Maybe with another function?
Hi @chhe ,
Yes it is something I do on all large forms.
Firstly get your up and down icons - I will use a Variable name vShow - you can call it whatever you want.
On your expand (down) arrow, put this the OnSelect
UpdateContext({vShow:true})with the Visible property
!vShowand the Collapse (up arrow) OnSelect
UpdateContext({vShow:false})with the Visible property
vShowNow one each object in the cards you want to hide, make the Visible property
vShowIn the Height of the Cards (assuming 50 presently - change if necessary)
If(vShow,50,0)The alternative is to simply have the Cards Visible as vShow, but I have found issues with things moving around the screen.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.