How to use Subway Nav Creator Kit in Canvas apps – Power apps
Introduction: Steps to add Subway Nav Component Properties of Subway Nav Component Implementation: ClearCollect(col_Modules,AddColumns(‘Master Deliverables’,”Checked”, false ));ClearCollect(col_SubNav,Table({ItemKey:1,ItemLabel:”Basic Information”,ItemState:”CurrentWithSubSteps”},{ItemKey:2,ItemLabel:”Basic Details”,ParentItemKey:1,ItemState:”Current”},{ItemKey:3,ItemLabel:”Questionnaire”,ParentItemKey:1,ItemState:”NotStarted”},{ItemKey:4,ItemLabel:”Area/Module”,ItemState:”NotStarted”},{ItemKey:5,ItemLabel:”Summary”,ItemState:”NotStarted”})) [Put above code in On Start of Canvas App] Switch(Self.Selected.ItemLabel,”Basic Details”,Set(var_BasicDetails, true );Set(var_Questionery, false );Set(var_AreaModule, false );Set(var_Summary, false ),”Questionnaire”,Set(var_BasicDetails, false );Set(var_Questionery, true );Set(var_AreaModule, false );Set(var_Summary, false ),”Area/Module”,Set(var_BasicDetails, false );Set(var_Questionery, false );Set(var_AreaModule, true );Set(var_Summary, false ),”Summary”,Set(var_BasicDetails, false );Set(var_Questionery, false );Set(var_AreaModule, false );Set(var_Summary, true ),””)
Change Set Request in Dataverse
Problem Definition: When we use the Dataverse actions for various requirements such as Add a new row or updating any value, etc., there are many cases where the above operations are successful despite of failure of the end operation. This leads to the creation of misleading/unwanted data which may consume unnecessary space. To overcome the issue Microsoft Dataverse has come up with an option to use one single action named Change Set Request comprising of few common Dataverse actions. Solution: Steps to be followed: Conclusion: By using this action one can avoid the creation of unwanted data which may not be connected to any flow due to failure of end actions. In such cases, to avoid such scenarios one can use this action to rollback all the tasks included in the changeset if one also fails in any condition. Note: You cannot add other actions in the changeset, for now, only 3 are included. Thank you, Angarika Mane for your valuable inputs!
Introducing the Cool and Crisp Makeover for Model-Driven Apps! 🚀🎨
Hey, app aficionados! Get ready to jazz up your model-driven apps because they’re getting a snazzy, modern, and totally refreshed look! 🌈✨ 🎉 What’s the Buzz? Turn on the “Try the new look” feature, and voila! Your Model-Driven Apps will be rocking updated styling, with cooler fonts, trendier colors, and even some magical shadows. It’s like giving your apps a makeover to align perfectly with the latest Microsoft Fluent design system. 🎨✨ 🚀 Why the Hype? This revamped look isn’t just for show – it’s designed to make your app experience smoother and more efficient. Imagine updated styling in form, view, and dashboard pages, creating an elevated, almost floating appearance! It’s not just a makeover; it’s an app revolution! 💻🚀 🔮 What’s in the Modern Magic Kit? 🎨 Command Bar Couture! Check out the floating command bar – it’s like the runway of your app, with rounded corners and consistent spacing. This isn’t just an update; it’s a fashion statement for your app’s command bar! 👩🎤💄 👀 View Pages that Wow! View pages are now the rockstars of your app. With a sleek command bar and the Power Apps grid control for infinite scrolling, data browsing just got a whole lot cooler. Your app just became the VIP lounge of data interaction! 🕶️📊 📋 Form Pages – Redefined Elegance! Form pages are strutting their stuff with a new command bar and refreshed headers, tabs, and business process flows. Quick views, card forms, and timelines also got a makeover. It’s not just a page; it’s a form of art! 🎨📝 💡 Field Controls – Styled to Perfection! Field controls like text input, lookup, and checkboxes are now the supermodels of Fluent design. Icons have shifted to the right for that perfect balance, and redundant icons have hit the road for a cleaner look. Your app’s fields just got a glow-up! 💅🌟 📊 Dashboard Page – Where Data Meets Glam! System dashboards are now flaunting the new command bar and a style that matches form and view pages. Monthly channel users get the Power Apps grid control for a dashboard that’s not just informative but also Instagram-worthy! 📸✨ 🚀 Activate the Glam! End-users, it’s your time to shine! Hit the “Try the new look” switch in the app header, and your app will transform into a modern marvel. Don’t worry; you can switch back anytime. It’s like having a magic button for your app’s wardrobe! ✨🔄 🚧 Limitations – Keepin’ It Real! Okay, so the mobile and mail apps are taking a rain check on the glam party. Also, classic theme customizations are making way for a new era. Change can be challenging, but it’s all for the greater good of app evolution! 🔄📱 Get ready to turn heads and elevate your app game because the future of model-driven apps is here, and it’s looking fresher than ever! 🚀💻✨ Thank you, Sayantan for your valuable inputs!
Create and edit tables using the table designer in Power Apps
By using the table designer in Power Apps Studio, you may create and modify Dataverse tables in canvas apps. Without leaving the program you’re using, you can manipulate the data in the table. Required permissions and limitations. Steps: Conclusion: We have the freedom to design data sources and record them in the Canvas app thanks to this capability. There is no need to travel to power apps to create a table. Thank you, Vijay for your valuable inputs to this blog!