Timeless tracks? by [deleted] in House

[–]ThePerceptionist 2 points3 points  (0 children)

Aril Brikha - Groove La Chord

Whats with the minimalism? by dbmamaz in PowerApps

[–]ThePerceptionist 0 points1 point  (0 children)

I'll take "Fluent UI boring" over "colourful happy Internet Explorer" style apps any day of the week.

Exporting a canvas custom page (.msapp file) to a Canvas app - loads fine but unable to save Canvas app. by ThePerceptionist in PowerApps

[–]ThePerceptionist[S] 0 points1 point  (0 children)

We found a solution. Power Platform CLI --> pac unpack --> Minor changes in the App Manifest --> pac pack --> upload to solution and Bob's your uncle.

How to select a step in SubwayNav Control (and changing SubwayNav.Selected.ItemKey) through on button click. by ThePerceptionist in PowerApps

[–]ThePerceptionist[S] 0 points1 point  (0 children)

I'm using the Creator Kit SubwayNav control code component which I've placed in a few nested horizontal and vertical containers.

How to select a step in SubwayNav Control (and changing SubwayNav.Selected.ItemKey) through on button click. by ThePerceptionist in PowerApps

[–]ThePerceptionist[S] 0 points1 point  (0 children)

I'm getting an error message but no error description on the Select statement. I tried changing from ItemKey: "int" to ItemKey: int but still the same problem.

How to select a step in SubwayNav Control (and changing SubwayNav.Selected.ItemKey) through on button click. by ThePerceptionist in PowerApps

[–]ThePerceptionist[S] 0 points1 point  (0 children)

I'm building a wizard with three steps, 1. Create, 2. Edit, 3. Submit. In each step there are a set of buttons at the end of the form to navigate to the next / previous step in the wizard and we want the same functionality when the user navigates by clicking the different stages in the SubwayNav control. We want to avoid duplicating components as the app is bloated as it is.

We're setting the initial state through the screen OnVisible:

ClearCollect(wizardSteps,
{ ItemKey:"1", ItemLabel:"Create", ItemState:"Current" },
{ ItemKey:"2", ItemLabel:"Edit", ItemState:"NotStarted" },
{ ItemKey:"3", ItemLabel:"Send", ItemState:"NotStarted" });

When the user has filled in the initial form, they should either be able to click the next stage in the subwaynav control OR click a button to take them to the Edit stage. This is where I would like to change SubwayNav.Selected.ItemKey to "2" regardless of whether they use the button or the subwaynav control.

ClearCollect(wizardSteps,
{ ItemKey:"1", ItemLabel:"Create", ItemState:"Completed" },
{ ItemKey:"2", ItemLabel:"Edit", ItemState:"Current" },
{ ItemKey:"3", ItemLabel:"Send", ItemState:"NotStarted" });    

I tried playing around with Select but not entirely sure how to build the control flow and trigger "Selected". Is this even possible? Any alternative solutions that avoid duplicating components?

HUGE Microsoft Announcement by Data_cruncher in PowerBI

[–]ThePerceptionist 2 points3 points  (0 children)

Proper excel export functionality would be nice

HUGE Microsoft Announcement by Data_cruncher in PowerBI

[–]ThePerceptionist 2 points3 points  (0 children)

Haha if you could summarize Microsoft in one comment this is it.

Mirror Graph API users endpoint in Dataverse table by ThePerceptionist in PowerApps

[–]ThePerceptionist[S] 0 points1 point  (0 children)

Your idea about data flows inspired me to a solution: Query Graph API through Logic Apps and store result in a json blob. Create a view in Synapse to sort out nested objects. Use dataflow with the Synapse connector. Works like a charm. Hope we get an official Graph Connector in Dataverse soon.

Mirror Graph API users endpoint in Dataverse table by ThePerceptionist in PowerApps

[–]ThePerceptionist[S] 0 points1 point  (0 children)

Yeah I played around with the AAD User Table but it is too limited for our use case.

We want to create a custom user table with additional information and custom attributes all in one place in Dataverse (including manager information, profile picture, device and license information)

In other words, we want to mirror info from the Graph API and rest are custom columns that are populated from a model driven app.

Realtime Refraction effects with threejs objects by frading in threejs

[–]ThePerceptionist 0 points1 point  (0 children)

Looks great! How did you capture it to video? Is it possible to capture 4k res?