Skip to main content

Power Apps Search

Search

Expand and Collapse Nested Gallery

I need every time when I pressed these arrows to expand or collapse the Galley

Gallery expand and collapse?

Hello, It seems i can't make this working 100% It shows the data, but when i press my ChevronUp icon ChevronUp icon Select is: If(Self.Icon=Icon.ChevronUp; RemoveIf(colCollapset;'Id (ID)'=Th...

Re: expand and collapse

Hello @AnandJ3    You will need a collection for it.   I've made a video tutorial about it: https://youtu.be/1NjZBA4RhfU     ✔️ Just in case my respons...

Re: collapse columns together

Hi @mts,   The most secure way is to test for each row if all cells are empty (= null)   Give this a go, you can copy the full script into a new blank query. let Source =...

Re: collapse columns together

thanks, i ended up doing a if col is not null then col, else if col1 is not null col1 else if col2 is not null col2

Re: Gallery expand and collapse?

Hi @Fardy1  Thanks for helping me out Not entirely what i need, but It only needs to expand/collapse when the customer has the same value AreThesame = 1 And still be able to show a

collapse columns together

i want to merge columns together   i have500 rows with 6 columns, if column 1,2,3 have data then columns 4,5,6 are null.  If Columns 4,5,6 have data, then columns 1,2,3 are null   ...

Re: Gallery expand and collapse?

Hello, Seems i figure it out, and working CUSTOMER exactin colCollapset.CUSTOMER And AreThesame exactin colCollapset.AreThesame And Not('Id (ID)' exactin colCollapset.'Id (ID)'); fa...

Making an expand/collapse gallery

Hello Community!   I want to know if its possible to create the next scenario.   I have a gallery that contains a list of parameters. (My GALLERY datasource is an SQL View)   ...

expand and collapse

In My Navbar when I click on down arrow then I click on sub menu then the Navbar is automatically closed I want it remain open please help me its urgent.

Re: Gallery expand and collapse?

Hi @TimmyBoy,   I create a new collection where I add a column "ChevronUp" ClearCollect(New_Collection,AddColumns(Old_Collection,"ChevronUp";false))    Then I put this Collec...

Expand/Collapse button won't working

Hello,   I have a nested gallery with a list of items however I would like to input a button that expands and collapse gallery items with the following formula:   Onselect -> If(IsE

Collapse a textbox in a gallery item

Hi,   I have a gallery item that has 3 textboxes, 1 below the other.   Often textbox 2 or 3 may be empty which makes a big gap to the next record below.   Is there a way of makin...

Re: Making an expand/collapse gallery

If I understand correctly, you are using a flexible height gallery, and you want to make it so that you see a second gallery, containing parameters associated with that item?   This is very do...

Re: Expand/Collapse button won't working

Hello @AustineHype    In your code given, you use colProjectDate, which I suspect is just a typo.  Try this; it's a shorter version with a similar concept. If in case o...

Re: Expand and Collapse Nested Gallery

If you're using a collection in the parent gallery you can simply add a new column to the collection that will contain boolean value for each record... then on the hide/show buttun you can use this f...

Re: Expand and Collapse Nested Gallery

Hello, thank you for helping! Yes, the items are from the table Orders. And yes, I have an order number that have more products. I want to expend the order number and see all the products that have ...

Re: Making an expand/collapse gallery

Hello @madlad.   Currently im using a normal gallery.  But from the video I've seen it uses a flexible gallery    So Im  trying to make this:    I'll...

Re: Expand/Collapse button won't working

Hello @AustineHype    Just the provided code as it is. X pertains to ThisRecord keyword. In my provided code, it means it is the current item in the ForAll function.

Re: Collapse a textbox in a gallery item

...esolve, particularly in Design Studio, so test them after publication by playing as well   

Nested gallery will not collapse when not selected (not visible)

I feel like I'd solved this already.  I had an app, there was something fundamentally wrong with it as no patches of columns from the gallery would work.  I could patch a literal value, but...

Re: Expand and Collapse Nested Gallery

Hello ! The Items from your 2 gallery (MainGal and SubGal) are from 'Orders' ? You can try to play with 2 distinct Collection before working on it. As I understand it, this is a linked tab fro...

Re: Expand/Collapse button won't working

Hi @cha_cha    Thanks for your quick reply, I have tried this formula but am unsure what I should put in the 'X' could you please advise?

How to hide value in Matrix when not expanded/collapse?

If not expanded i want it to be blank, then when i collapse i will value.    

Re: how do i collapse a button in a gallery

Hi @Jupyter123 ,   You can add two buttons with the same ‘OnSelect’ and ‘Visible’ as icon.   I made a sample for you.   Add two button to the gallery. &n...