cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
gabrielaurora
Frequent Visitor

How to set DefaultSelectedItems for multiple select combo box based on a choice field in a gallery

I have a gallery that returns multiple rows. The gallery's datasource is a Collection based on a table that has a column of datatype = Choice with multiple select allowed.

I have multiple pages in my app with Back and Next buttons. 

When I select choices in the combo box it patches correctly, but if I click Next and go to the next page, and then click Back to go back to the page with the gallery, the values in the multiple select combo box are blank/cleared. Same also happens if I open the form from the beginning and it needs to return the multiple selected values for the gallery.

Setting DefaultSelectedItems = ThisItem.Blah doesn't work as it seems to return the value of the selected row (usually the last row) for all rows. (Is this a bug as the same doesn't happen for any other control type?) 

 

I think I need a way to loop through gallery rows and set the value manually. I've tried looping through the gallery but I'm not sure if I did it correctly but also I'm not sure where to do it. Screen OnVisible seems to run before DefaultedSelectedItems so I can't use that.

 

In summary, I need help on populating the DefaultSelectedItem of a multiple select combo box in a Gallery. Thanks.

8 REPLIES 8
BCBuizer
Multi Super User
Multi Super User

Hi @gabrielaurora,

 

What exactly is being patched when making changes in the selection?

 

If it is the table on which the collection in based, do you make sure to also update the collection?

 

In case it is the collection, could it be that the collection is being populated in the OnVisible property of the screen, basically overwriting the changes that were made?

 

For any scenario I would consider if a collection is really needed since it can cause the described issues. It may be better to connect directly to your table.



Did you like my post? Please give it a thumbs up! Did I resolve your issue? Please click Accept as Solution to close the topic and so other members of the community can find solutions more easily.

Thanks for the reply. I originally did base it on the table but got this issue and found a suggestion to use a collection in galleries as they are more stable, but the issue still happened either way.

 

I actually didn't explain myself correctly in the original post. I said that when I go back to the page the values are clear/blank but that's not correct.

 

If I set DefaultSelectedItems to ThisItem.Blah (as your meant to) when I patch the data and the gallery is refreshed (this is done automatically, I don't do a refresh) or move to a different page then come back, the values are set to the values of the last row.

 

For example, say I have 2 rows and I set the multiple select to A and B in the first row and C and D in the second row, after patching or moving page and coming back, the multiple select for both rows are C and D, even though the data patched correctly and the database shows A and B for the first row and C and D for the second. So to me setting DefaultSelectedItems to ThisItem.Blah is not working correctly, and this is my main issue.

 

It's just an issue for the multiple select combobox as I have other controls in the gallery with DefaultSelectedItems = ThisItem.Blah that all work fine. I've tried the same field in a Form and it works fine, it just has a problem in a Gallery.

 

I have googled extensively and cannot find a single example of multiselect in a gallery so I'm beginning to think it can't be done.

BCBuizer
Multi Super User
Multi Super User

Hi @gabrielaurora ,

 

I think the issue may be in a misunderstanding of how collections work:

 

They are very similar to variables, meaning they keep their value from the moment you set them until you make a change to them. In your case I don't think you are updating your collection after you have updated your data source. This means that when you navigate to another screen and back, the gallery will reset and the (non updated) values from the collection are displayed.

 

To resolve this, you will need to update your collection after making changes to the data source or get rid of using the collection altogether. 



Did you like my post? Please give it a thumbs up! Did I resolve your issue? Please click Accept as Solution to close the topic and so other members of the community can find solutions more easily.
gabrielaurora
Frequent Visitor

Thanks again for the reply.

Ok, I've been working late nights on this and have been trying many things and the actual issue is slightly different to my previous posts (again... 😬) I removed DefaultSelectedItems = ThisItem.Blah for testing which was causing the blank fields, but I've just re-added it and this is what's actually happening:


1. Data already exists in the table (from a previous session)
2. On navigate to the page with the multiple select combobox, Screen OnVisible creates a collection using ClearCollect.

3. The data in the gallery, including the multiple select combobox, populates correctly, so ThisItem.DefaultSelectItems is working fine (not like I stated earlier that it wasn't)
4. For all fields in the gallery other than the multiple select comboboxes, I patch the data on the back and next buttons.
5. For the multiple select combobox, I patch on OnChange using a ForLoop to get all the selected values in the multiple select combobox, using this code:

ForAll(
    comboBusinessAreasList.SelectedItems,
    Collect(
        colBusinessAreas,
        {
            Value: ThisRecord.Value
        }
    )
);

Patch(BlahTable, ThisItem, {BusinessAreasList:colBusinessAreas.Value}
);

ClearCollect
(colBusinessAreas, Blank());


6. If I navigate away from the page and back to it the values are all fine. So I assume Screen OnVisible is doing it's job and getting the latest values.
7. Now if I update a value in a different control which gets patched on back and next buttons, when I navigate away and then back to this page, the multiple select combobox of the first row loses it's value.

E.g.
This is the current values:

gabrielaurora_1-1710342950630.png


I update FTE of the second row to 3. I patch the values and navigate away. I return and the multiple select combobox for the first row has been cleared:

gabrielaurora_2-1710342990302.png

 

I'm not sure what could be causing this.






BCBuizer
Multi Super User
Multi Super User

Hi @gabrielaurora ,

 

Try changing the OnChange property of the Combobox to:

Patch(
    BlahTable, 
    ThisItem, 
    {BusinessAreasList: Self.SelectedItems}
);


Did you like my post? Please give it a thumbs up! Did I resolve your issue? Please click Accept as Solution to close the topic and so other members of the community can find solutions more easily.

That patched the values (saves me doing the for loop) but I still have the issue. But I think you're on the right track.

I remember when trying a hundred things, I did notice that patching the other controls OnChange had a similar effect with clearing the top row, which is why I put the patch on the back/next button. I didn't patch the combobox as I thought I had to loop. This is my code in the back/next buttons that patches all rows and controls (except the combobox) in the gallery:

ForAll(
      Gallery_1.AllItems
     As memNew,
    Patch(
        BlahTable,
        {
            Col1:memNew.txtCol1.Text
           ,Col2:memNew.ddCol2.Selected.Value
           etc.
        }
    )
);


Navigate('BP Section 4b')

 

Would you know if I can patch the combobox in the above code? E.g:

 

ForAll(
      Gallery_1.AllItems
     As memNew,
    Patch(
        BlahTable,
        {
            Col1:memNew.txtCol1.Text
           ,Col2:memNew.ddCol2.Selected.Value
           ,BusinessAreasList:memNew.comboboxBusinessAreasList.??
        }
    )
);


Navigate('BP Section 4b')


I tried Self.SelectedItems was bad syntax.

This BusinessAreasList:memNew.comboBusinessAreasList.SelectedItems patches fine but then still have the issue when I navigate away and then comeback that the first row of the combobox clears.

It's 2 am here so tomorrow I'll take a screen recording of what's happening if that will help make more sense. 


 

BCBuizer
Multi Super User
Multi Super User

Hi @gabrielaurora ,

 

Try adding one extra line to the navigations button's OnSelect property to update the collection after patching the data source:

 

ForAll(
      Gallery_1.AllItems
     As memNew,
    Patch(
        BlahTable,
        {
            Col1:memNew.txtCol1.Text
           ,Col2:memNew.ddCol2.Selected.Value
           etc.
        }
    )
);

ClearCollect(CollectionName, BlahTable);

Navigate('BP Section 4b')

Replace CollectionName with the actual name of the collection.

 

Ps. I still think you don't actually need to use a collection and connecting the gallery directly to the datasource would fix all your issues. However, the above should fix the issue whilst continuing the use of a collection.



Did you like my post? Please give it a thumbs up! Did I resolve your issue? Please click Accept as Solution to close the topic and so other members of the community can find solutions more easily.

I tried both of those things and still no joy. I'm changing the screen to use a form now instead of a gallery which will sort my issue but for completeness I've attached a powerpoint with a video of what's happening and what I can't solve.

To clarify the video, when I go to the screen the first time, the data in the multi select comb box is correct. If I update the combox box, click next (patch) and go back, data is fine.
When I update any other field other than the combo box (I call it second field in the video) when I click next (patch) and go back, the data in the combo box for the first row is cleared. Note, the data was patched correctly in the database table it's just displayed incorrectly.



Helpful resources

Announcements

Take a short Community User Survey | Help us make your experience better!

To ensure that we are providing the best possible experience for Community members, we want to hear from you!    We value your feedback! As part of our commitment to enhancing your experience, we invite you to participate in a brief 15-question survey. Your insights will help us improve our services and better serve the community.   👉 Community User Survey    Thank you for being an essential part of our community!    Power Platform Engagement Team  

Tuesday Tip | How to Get Community Support

It's time for another Tuesday Tip, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.       This Week: All About Community Support Whether you're a seasoned community veteran or just getting started, you may need a bit of help from time to time! If you need to share feedback with the Community Engagement team about the community or are looking for ways we can assist you with user groups, events, or something else, Community Support is the place to start.   Community Support is part of every one of our communities, accessible to all our community members.   Within each community's Community Support page, you'll find three distinct areas, each with a different focus to help you when you need support from us most. Power Apps: https://powerusers.microsoft.com/t5/Community-Support/ct-p/pa_community_support Power Automate: https://powerusers.microsoft.com/t5/Community-Support/ct-p/mpa_community_support Power Pages: https://powerusers.microsoft.com/t5/Community-Support/ct-p/mpp_community_support Copilot Studio: https://powerusers.microsoft.com/t5/Community-Support/ct-p/pva_community-support   Community Support Form If you need more assistance, you can reach out to the Community Team via the Community support form. Choose the type of support you require and fill in the form accordingly. We will respond to you promptly.    Thank you for being an active part of our community. Your contributions make a difference!   Best Regards, The Community Management Team

Community Roundup: A Look Back at Our Last 10 Tuesday Tips

As we continue to grow and learn together, it's important to reflect on the valuable insights we've shared. For today's #TuesdayTip, we're excited to take a moment to look back at the last 10 tips we've shared in case you missed any or want to revisit them. Thanks for your incredible support for this series--we're so glad it was able to help so many of you navigate your community experience!   Getting Started in the Community An overview of everything you need to know about navigating the community on one page!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Ranks and YOU Have you ever wondered how your fellow community members ascend the ranks within our community? We explain everything about ranks and how to achieve points so you can climb up in the rankings! Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Powering Up Your Community Profile Your Community User Profile is how the Community knows you--so it's essential that it works the way you need it to! From changing your username to updating contact information, this Knowledge Base Article is your best resource for powering up your profile. Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Blogs--A Great Place to Start There's so much you'll discover in the Community Blogs, and we hope you'll check them out today!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Unlocking Community Achievements and Earning Badges Across the Communities, you'll see badges on users profile that recognize and reward their engagement and contributions. Check out some details on Community badges--and find out more in the detailed link at the end of the article! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Blogging in the Community Interested in blogging? Everything you need to know on writing blogs in our four communities! Get started blogging across the Power Platform communities today! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Subscriptions & Notifications We don't want you to miss a thing in the community! Read all about how to subscribe to sections of our forums and how to setup your notifications! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Getting Started with Private Messages & Macros Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Community User Groups Learn everything about being part of, starting, or leading a User Group in the Power Platform Community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Update Your Community Profile Today! Keep your community profile up to date which is essential for staying connected and engaged with the community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Thank you for being an integral part of our journey.   Here's to many more Tuesday Tips as we pave the way for a brighter, more connected future! As always, watch the News & Announcements for the next set of tips, coming soon!

Calling all User Group Leaders and Super Users! Mark Your Calendars for the next Community Ambassador Call on May 9th!

This month's Community Ambassador call is on May 9th at 9a & 3p PDT. Please keep an eye out in your private messages and Teams channels for your invitation. There are lots of exciting updates coming to the Community, and we have some exclusive opportunities to share with you! As always, we'll also review regular updates for User Groups, Super Users, and share general information about what's going on in the Community.     Be sure to register & we hope to see all of you there!

April 2024 Community Newsletter

We're pleased to share the April Community Newsletter, where we highlight the latest news, product releases, upcoming events, and the amazing work of our outstanding Community members.   If you're new to the Community, please make sure to follow the latest News & Announcements and check out the Community on LinkedIn as well! It's the best way to stay up-to-date with all the news from across Microsoft Power Platform and beyond.    COMMUNITY HIGHLIGHTS   Check out the most active community members of the last month! These hardworking members are posting regularly, answering questions, kudos, and providing top solutions in their communities. We are so thankful for each of you--keep up the great work! If you hope to see your name here next month, follow these awesome community members to see what they do!   Power AppsPower AutomateCopilot StudioPower PagesWarrenBelzDeenujialexander2523ragavanrajanLaurensMManishSolankiMattJimisonLucas001AmikcapuanodanilostephenrobertOliverRodriguestimlAndrewJManikandanSFubarmmbr1606VishnuReddy1997theMacResolutionsVishalJhaveriVictorIvanidzejsrandhawahagrua33ikExpiscornovusFGuerrero1PowerAddictgulshankhuranaANBExpiscornovusprathyooSpongYeNived_Nambiardeeksha15795apangelesGochixgrantjenkinsvasu24Mfon   LATEST NEWS Business Applications Launch Event - On Demand In case you missed the Business Applications Launch Event, you can now catch up on all the announcements and watch the entire event on-demand inside Charles Lamanna's latest cloud blog.   This is your one stop shop for all the latest Copilot features across Power Platform and #Dynamics365, including first-hand looks at how companies such as Lenovo, Sonepar, Ford Motor Company, Omnicom and more are using these new capabilities in transformative ways. Click the image below to watch today!     Power Platform Community Conference 2024 is here! It's time to look forward to the next installment of the Power Platform Community Conference, which takes place this year on 18-20th September 2024 at the MGM Grand in Las Vegas!   Come and be inspired by Microsoft senior thought leaders and the engineers behind the #PowerPlatform, with Charles Lamanna, Sangya Singh, Ryan Cunningham, Kim Manis, Nirav Shah, Omar Aftab and Leon Welicki already confirmed to speak. You'll also be able to learn from industry experts and Microsoft MVPs who are dedicated to bridging the gap between humanity and technology. These include the likes of Lisa Crosbie, Victor Dantas, Kristine Kolodziejski, David Yack, Daniel Christian, Miguel Félix, and Mats Necker, with many more to be announced over the coming weeks.   Click here to watch our brand-new sizzle reel for #PPCC24 or click the image below to find out more about registration. See you in Vegas!     Power Up Program Announces New Video-Based Learning Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram. These include a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the image below to find out more!     UPCOMING EVENTS Microsoft Build - Seattle and Online - 21-23rd May 2024 Taking place on 21-23rd May 2024 both online and in Seattle, this is the perfect event to learn more about low code development, creating copilots, cloud platforms, and so much more to help you unleash the power of AI.   There's a serious wealth of talent speaking across the three days, including the likes of Satya Nadella, Amanda K. Silver, Scott Guthrie, Sarah Bird, Charles Lamanna, Miti J., Kevin Scott, Asha Sharma, Rajesh Jha, Arun Ulag, Clay Wesener, and many more.   And don't worry if you can't make it to Seattle, the event will be online and totally free to join. Click the image below to register for #MSBuild today!     European Collab Summit - Germany - 14-16th May 2024 The clock is counting down to the amazing European Collaboration Summit, which takes place in Germany May 14-16, 2024. #CollabSummit2024 is designed to provide cutting-edge insights and best practices into Power Platform, Microsoft 365, Teams, Viva, and so much more. There's a whole host of experts speakers across the three-day event, including the likes of Vesa Juvonen, Laurie Pottmeyer, Dan Holme, Mark Kashman, Dona Sarkar, Gavin Barron, Emily Mancini, Martina Grom, Ahmad Najjar, Liz Sundet, Nikki Chapple, Sara Fennah, Seb Matthews, Tobias Martin, Zoe Wilson, Fabian Williams, and many more.   Click the image below to find out more about #ECS2024 and register today!   Microsoft 365 & Power Platform Conference - Seattle - 3-7th June If you're looking to turbo boost your Power Platform skills this year, why not take a look at everything TechCon365 has to offer at the Seattle Convention Center on June 3-7, 2024.   This amazing 3-day conference (with 2 optional days of workshops) offers over 130 sessions across multiple tracks, alongside 25 workshops presented by Power Platform, Microsoft 365, Microsoft Teams, Viva, Azure, Copilot and AI experts. There's a great array of speakers, including the likes of Nirav Shah, Naomi Moneypenny, Jason Himmelstein, Heather Cook, Karuana Gatimu, Mark Kashman, Michelle Gilbert, Taiki Y., Kristi K., Nate Chamberlain, Julie Koesmarno, Daniel Glenn, Sarah Haase, Marc Windle, Amit Vasu, Joanne C Klein, Agnes Molnar, and many more.   Click the image below for more #Techcon365 intel and register today!   For more events, click the image below to visit the Microsoft Community Days website.    

Tuesday Tip | Update Your Community Profile Today!

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   We're excited to announce that updating your community profile has never been easier! Keeping your profile up to date is essential for staying connected and engaged with the community.   Check out the following Support Articles with these topics: Accessing Your Community ProfileRetrieving Your Profile URLUpdating Your Community Profile Time ZoneChanging Your Community Profile Picture (Avatar)Setting Your Date Display Preferences Click on your community link for more information: Power Apps, Power Automate, Power Pages, Copilot Studio   Thank you for being an active part of our community. Your contributions make a difference! Best Regards, The Community Management Team

Top Solution Authors
Top Kudoed Authors
Users online (3,157)