cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
tjestesjr
Helper II
Helper II

Keeping a user on screen

Hi all,

 

I have an application where a user can upload an excel file to our database. The application first parses the Excel data to a gallery for the users to review and then delete or upload the data. The users are requesting that they not be allowed to leave the screen without committing or deleting the data, so I have added the following logic:

 

Screen.OnHidden If(
    CountRows(galKEDPricingJSON.AllItems) > 0,
    UpdateContext({showPopup: true}) && Back(ScreenTransition.None)
)

 

This works in my personal Dev environment and works well. I created a Modal Popup form that covers the screen and give the user the choice to cancel and stay on screen or delete the records without committing them. My problem is when I publish to UAT I get different behavior.  The user is presented with the popup, but they can navigate away from the screen so the Back() is not working.

 

Any thoughts or suggestions as to how to debug this would be greatly appreciated.

 

1 ACCEPTED SOLUTION

Accepted Solutions

Hi @tjestesjr,

 

I unfortunately am unable to recreate this behaviour. On my end I am not able to navigate when the gallery contains records and will display a pop-up.

 

The current logic checks whether galKEDPricingJSON contains records. If this is the case, navigation will not be allowed and a variable will be set to true instead - resulting in the pop-up showing. Is this the functionality that you would like to implement?

 

I did make a small mistake in my OnSelect code: Set(gblShowPopup: true) should be Set(gblShowPopup, true). (comma instead of colon) I have adjusted my previous comment accordingly.

The gallery OnSelect should contain the If() statement code, controls within the gallery should only contain Select(Parent) within their OnSelect property. It may be beneficial to check whether the controls within the gallery don't accidentally have the old nav code. Is there any other code that could interfere with our conditional logic?

 

I hope this helps!

View solution in original post

9 REPLIES 9
LaurensM
Super User
Super User

Hi @tjestesjr😊

 

Preferably you would have an If statement on the OnSelect code used to navigate to the next screen:

 

//OnSelect of the next page button or icon...
If(
    CountRows(galKEDPricingJSON.AllItems) > 0,
    UpdateContext({showPopup: true}),
    Navigate(ScreenName)
)

 

(You could also use conditional logic within the DisplayMode of that control)

 

As a side note: chaining functions is done by using the semicolon not '&&'.

 

Function1();
Function2()

 

The back() function indeed seems to run in the editor (causing 2 rapid screen swaps) but not in the live app version. That said, even if it were to have worked I would have highly advised against it. It is best to stop the user from navigating via an If statement instead of trying to navigate the user back to the previous screen after navigating.

 

If this solves your question, would you be so kind as to accept it as a solution.
Thanks!

@LaurensM 

 

I didn't realize that I had used the logical AND operator '&&' there instead of the ';' . Always useful to have a second set of eyes and a fresh perspective on the situation. I am fixing the function chaining now and will publish to UAT and report back here. 

@tjestesjr,

 

Please note that changing to the correct chaining operator does not seem to change the behaviour in the live app version. It is best to change your OnHidden approach to the shown OnSelect code.

 

I hope this helps!

@LaurensM 

 

So, you are right changing my linking operator did not fix the functionality in UAT. My issue now is trying to disable the navigation component when the Popup Criteria is met. I have my user navigation in a component and I am not sure how to enable/disable the menu. I have a collection on my App.OnStart that drives the menu component through the collection below.

 

ClearCollect(
    colVerticalMenu,
    {
        Title: "Facility Management",
        Screen: KED_FacilityManagement,
        Id: 1
    }, 
    {
        Title: "Brand Item",
        Screen: KED_BrandItemSearch,
        Id: 2
    },   
    {
        Title: "Brand Item Mapping",
        Screen: KED_BrandItemMapping,
        Id: 3
    },
    {
        Title: "Member Mapping",
        Screen: KED_MemberShipTo,
        Id: 4
    },
    {
        Title: "Restaurant Mapping",
        Screen: KED_ResaurantMapping,
        Id: 5
    },
    {
        Title: "Pricing Import",
        Screen: KED_PricingImport,
        Id: 6
    }
);

 

 

Screenshot KED PriceImportScreen.png

 

@tjestesjr 

 

Thanks for the info! 😊

 

If I understand it correctly your navigation is built as a Power Apps component. Most likely this will be a Gallery within that component? Below I have documented a possible approach.

 

By enabling 'Access App Scope' you will be able to update global variables from within a Component:

LaurensM_0-1708552090665.png

 

In addition add an input custom property of type boolean - make sure to set the default value to false.

LaurensM_3-1708552521336.png

 

LaurensM_4-1708552529129.png

 

 

Your OnSelect of the Gallery should look quite similar to the following code - make sure to add the Set() function:

 

If(
    ComponentName.DisableNav,
    Set(gblShowPopup, true),
    Navigate(ThisItem.Screen)
)

 

On your Power Apps screen shown in the screenshot, select the component and add the code below to the custom input property called DisableNav:

 

galKEDPricingJSON.AllItemsCount > 0

 

Use gblShowPopup as the Visible property for your pop-up. Make sure that the pop-up background (1) also covers the navigation control and (2) is higher in the tree view hierarchy. This will 'disable' the navigation menu by covering the navigation menu - only allowing the user to select either the cancel or delete button.

 

I hope this helps!

@LaurensM 

 

Thank you for the excellent write-up! I have implemented the suggestions, but I am still having issues with user being able to leave the KED_PricingImport screen. I am not able to keep them on the screen (see gif below). But if they have uploaded data and navigate back to the screen then it works as intended.

 

Video Project 2.gif

Hi @tjestesjr,

 

I unfortunately am unable to recreate this behaviour. On my end I am not able to navigate when the gallery contains records and will display a pop-up.

 

The current logic checks whether galKEDPricingJSON contains records. If this is the case, navigation will not be allowed and a variable will be set to true instead - resulting in the pop-up showing. Is this the functionality that you would like to implement?

 

I did make a small mistake in my OnSelect code: Set(gblShowPopup: true) should be Set(gblShowPopup, true). (comma instead of colon) I have adjusted my previous comment accordingly.

The gallery OnSelect should contain the If() statement code, controls within the gallery should only contain Select(Parent) within their OnSelect property. It may be beneficial to check whether the controls within the gallery don't accidentally have the old nav code. Is there any other code that could interfere with our conditional logic?

 

I hope this helps!

@LaurensM 

 

"I did make a small mistake in my OnSelect code: Set(gblShowPopup: true) should be Set(gblShowPopup, true). (comma instead of colon) I have adjusted my previous comment accordingly." I did see that but didn't call it out. 🙂

 

This is what finally worked was changing the OnSelect to  Select(Parent)  for the  controls within the MenuComponent gallery.

 

Thanks very much for your help and patience and persistent, I really appreciate it.

 

LaurensM
Super User
Super User

Perfect! Glad I was able to help @tjestesjr😊

Helpful resources

Announcements

May 2024 Community Newsletter

It's time for the May 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 PagesWarrenBelzcreativeopinionExpiscornovusFubarAmikNived_NambiarPstork1OliverRodriguesmmbr1606ManishSolankiMattJimisonragavanrajantimlSudeepGhatakNZrenatoromaoLucas001iAm_ManCatAlexEncodianfernandosilvaOOlashynJmanriqueriosChriddle  BCBuizerExpiscornovus  a33ikBCBuizer  SebSDavid_MA  dpoggermannPstork1     LATEST NEWS   We saw a whole host of amazing announcements at this year's #MSBuild, so we thought we'd share with you a bite sized breakdown of the big news via blogs from Charles Lamanna, Sangya Singh, Ryan Cunningham, Kim Manis, Nirav Shah, Omar Aftab, and ✊🏾Justin Graham :   New ways of development with copilots and Microsoft Power PlatformRevolutionize the way you work with Automation and AIPower Apps is making it easier for developers to build with Microsoft Copilot and each otherCopilot in Microsoft Fabric is now generally available in Power BIUnlock new levels of productivity with Microsoft Dataverse and Microsoft Copilot StudioMicrosoft Copilot Studio: Building copilots with agent capabilitiesMicrosoft Power Pages is bringing the new standard in secure, AI-powered capabilities   If you'd like to relive some of the highlights from Microsoft Build 2024, click the image below to watch a great selection of on-demand Keynotes and sessions!         WorkLab Podcast with Charles Lamanna   Check out the latest episode of the WorkLab podcast with CVP of Business Apps and Platforms at Microsoft, Charles Lamanna, as he explains the ever-expanding evolution of Copilot, and how AI is offering new opportunities for business leaders. Grab yourself a coffee and click the image below to take a listen.       Event Recap: European Collaboration and Cloud Summits 2024   Click the image below to read a great recap by Mark Kashman about the recent European Collaboration Summit and European Cloud Summit held in Germany during May 2024. Great work everybody!       UPCOMING EVENTS European Power Platform Conference - SOLD OUT! Congrats to everyone who managed to grab a ticket for the now SOLD OUT European Power Platform Conference, which takes place in beautiful Brussels, Belgium, on 11-13th June. With a great keynote planned from Ryan Cunningham and Sangya Singh, plus expert sessions from the likes of Aaron Rendell, Amira Beldjilali, Andrew Bibby, Angeliki Patsiavou, Ben den Blanken, Cathrine Bruvold, Charles Sexton, Chloé Moreau, Chris Huntingford, Claire Edgson, Damien Bird, Emma-Claire Shaw, Gilles Pommier, Guro Faller, Henry Jammes, Hugo Bernier, Ilya Fainberg, Karen Maes, Lindsay Shelton, Mats Necker, Negar Shahbaz, Nick Doelman, Paulien Buskens, Sara Lagerquist, Tricia Sinclair, Ulrikke Akerbæk, and many more, it looks like the E in #EPPC24 stands for Epic!   Click the image below for a full run down of the exciting sessions planned, and remember, you'll need to move quickly for tickets to next year's event!       AI Community Conference - New York - Friday 21st June Check out the AI Community Conference, which takes place at the Microsoft Corporate building on Friday 21st June at 11 Times Square in New York City. Here, you'll have the opportunity to explore the latest trends and breakthroughs in AI technology alongside fellow enthusiasts and experts, with speakers on the day including Arik Kalininsky, Sherry Xu, Xinran Ma, Jared Matfess, Mihail Mateev, Andrei Khaidarov, Ruven Gotz, Nick Brattoli, Amit Vasu, and more. So, whether you're a seasoned professional or just beginning your journey into AI, click the image below to find out more about this exciting NYC event.       TechCon365 & Power Platform Conference - D.C. - August 12-16th ** EARLY BIRD TICKETS END MAY 31ST! ** Today's the perfect time to grab those early bird tickets for the D.C. TechCon365 & PWRCON Conference at the Walter E Washington Center on August 12-16th! Featuring the likes of Tamara Bredemus, Sunny Eltepu, Lindsay Shelton, Brian Alderman, Daniel Glenn, Julie Turner, Jim Novak, Laura Rogers, Microsoft MVP, John White, Jason Himmelstein, Luc Labelle, Emily Mancini, MVP, UXMC, Fabian Williams, Emma Wiehe, Amarender Peddamalku, and many more, this is the perfect event for those that want to gain invaluable insights from industry experts. Click the image below to grab your tickets today!         Power Platform Community Conference - Sept. 18-20th 2024 Check out some of the sessions already planned for the Power Platform Community Conference in Las Vegas this September. Holding all the aces we have Kristine Kolodziejski, Lisa Crosbie, Daniel Christian, Dian Taylor, Scott Durow🌈, David Yack, Michael O. and Aiden Kaskela, who will be joining the #MicrosoftCommunity for a series of high-stakes sessions! Click the image below to find out more as we go ALL-IN at #PPCC24!       For more events, click the image below to visit the Community Days website.                                            

Celebrating the May Super User of the Month: Laurens Martens

  @LaurensM  is an exceptional contributor to the Power Platform Community. Super Users like Laurens inspire others through their example, encouragement, and active participation. We are excited to celebrated Laurens as our Super User of the Month for May 2024.   Consistent Engagement:  He consistently engages with the community by answering forum questions, sharing insights, and providing solutions. Laurens dedication helps other users find answers and overcome challenges.   Community Expertise: As a Super User, Laurens plays a crucial role in maintaining a knowledge sharing environment. Always ensuring a positive experience for everyone.   Leadership: He shares valuable insights on community growth, engagement, and future trends. Their contributions help shape the Power Platform Community.   Congratulations, Laurens Martens, for your outstanding work! Keep inspiring others and making a difference in the community!   Keep up the fantastic work!        

Check out the Copilot Studio Cookbook today!

We are excited to announce our new Copilot Cookbook Gallery in the Copilot Studio Community. We can't wait for you to share your expertise and your experience!    Join us for an amazing opportunity where you'll be one of the first to contribute to the Copilot Cookbook—your ultimate guide to mastering Microsoft Copilot. Whether you're seeking inspiration or grappling with a challenge while crafting apps, you probably already know that Copilot Cookbook is your reliable assistant, offering a wealth of tips and tricks at your fingertips--and we want you to add your expertise. What can you "cook" up?   Click this link to get started: https://aka.ms/CS_Copilot_Cookbook_Gallery   Don't miss out on this exclusive opportunity to be one of the first in the Community to share your app creation journey with Copilot. We'll be announcing a Cookbook Challenge very soon and want to make sure you one of the first "cooks" in the kitchen.   Don't miss your moment--start submitting in the Copilot Cookbook Gallery today!     Thank you,  Engagement Team

Announcing Power Apps Copilot Cookbook Gallery

We are excited to share that the all-new Copilot Cookbook Gallery for Power Apps is now available in the Power Apps Community, full of tips and tricks on how to best use Microsoft Copilot as you develop and create in Power Apps. The new Copilot Cookbook is your go-to resource when you need inspiration--or when you're stuck--and aren't sure how to best partner with Copilot while creating apps.   Whether you're looking for the best prompts or just want to know about responsible AI use, visit Copilot Cookbook for regular updates you can rely on--while also serving up some of your greatest tips and tricks for the Community. Check Out the new Copilot Cookbook for Power Apps today: Copilot Cookbook - Power Platform Community.  We can't wait to see what you "cook" up!      

Tuesday Tip | How to Report Spam in Our Community

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.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   Today's Tip: How to Report Spam in Our Community We strive to maintain a professional and helpful community, and part of that effort involves keeping our platform free of spam. If you encounter a post that you believe is spam, please follow these steps to report it: Locate the Post: Find the post in question within the community.Kebab Menu: Click on the "Kebab" menu | 3 Dots, on the top right of the post.Report Inappropriate Content: Select "Report Inappropriate Content" from the menu.Submit Report: Fill out any necessary details on the form and submit your report.   Our community team will review the report and take appropriate action to ensure our community remains a valuable resource for everyone.   Thank you for helping us keep the community clean and useful!

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!

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