Everything Around Dataverse - Marius Wodtke
Everything Around Dataverse - Marius Wodtke
  • 14
  • 3 210
Power Pages Actions - Authorization Configuration Improvements
Configuring Authorization in the Power Pages Actions Configuration was error prone with the OOTB experience, but now a custom control makes it much easier!
Download the Solution here: github.com/Kunter-Bunt/PowerPagesActions
Переглядів: 28

Відео

Calling Bound APIs with the Power Pages Actions
Переглядів 1012 місяці тому
Custom APIs offer a lot of flexibility, but cannot be called directly from PowerPages. In the last video and the accompanying repository/solution, we are able to easily call custom server functionality! And in this video we will further Repository Link: github.com/Kunter-Bunt/PowerPagesActions 00:00 Intro 00:13 Setup 02:03 Demo 02:40 Special Case: Contact
Using Control Styles in Power Pages
Переглядів 992 місяці тому
Control Styles can alter the behavior of form fields in Power Pages. Some of them are really tailored to gathering customer feedback, but others have a wide range of use cases like "Render Lookup as Dropdown" or "Code Component".
Authorization with the Power Pages Actions Solution
Переглядів 1023 місяці тому
Custom APIs offer a lot of flexibility, but cannot be called directly from PowerPages. In the last video and the accompanying repository/solution, we are able to easily call custom server functionality! And in this video we will further Repository Link: github.com/Kunter-Bunt/PowerPagesActions 00:00 Intro 00:09 Setup 02:35 Demo 04:47 Behind the scenes 08:12 Final thoughts
A solution for calling Custom APIs from Power Pages
Переглядів 2994 місяці тому
Custom APIs offer a lot of flexibility, but cannot be called directly from PowerPages. With this video and the accompanying repository/solution, this is going to change! We are going to call custom functionality with an interface that is similar to what you know from the JavaScript of Model-Driven Apps. Repository Link: github.com/Kunter-Bunt/PowerPagesActions 00:00 Intro 00:18 Setup 07:08 Demo...
Generating JWT Token with Power Pages
Переглядів 2635 місяців тому
JSON Web Token allows for Authentication and Authorization with WebServices. For example, the Dataverse Web API can leverage such a tokes (with the Dataverse audience) to determine what you can read. With Power Pages, we can also create such tokens as well to secure our custom services. We only need a trusted certificate and an App Registration. Resources: learn.microsoft.com/en-us/power-pages/...
Power Pages Web API with N:N Relationships
Переглядів 2405 місяців тому
This time we got the feedback that the standard experience for N:N Relationships is not ideal. The customer wants checkboxes instead. This is where the Web API of Power Pages can help us create a custom user experience for the users! Resources: learn.microsoft.com/en-us/power-pages/configure/write-update-delete-operations#wrapper-ajax-function
Power Pages Form Validation and the benefits of Webfiles
Переглядів 2916 місяців тому
For the Lead form we only want to allow entries for persons older than 18 years. A great fit for Client Site Validation, but there is a bug in the code, and the debugging tools are not working correctly! With the usage of Webfiles we can get a better debugging experience to quickly find the error. And with using Fiddler we can even test some fixes without deploying a change to the server to avo...
Using FetchXml in Power Pages
Переглядів 6867 місяців тому
This time, we will be using FetchXml and Liquid to make a custom List of the Products. It will enable more flexibility in how we display the Products in our Dataverse Instance. The solution can even show a header image of the product.
First Steps of Code Editing in Power Pages
Переглядів 2267 місяців тому
With the sample of a Products form, we are using JavaScript and CSS to customize a page of our Power Page to make it more user friendly.
Showing List Data in Power Pages
Переглядів 2468 місяців тому
Not only can we let users enter Data into Power Pages, but we can also show them the data we administer in Power Pages.
Adding a Form to Power Pages
Переглядів 1919 місяців тому
This time we are adding the lead form to our power page so that an anonymous user of the page can express interest in our matters.
First steps in the Portal Pages Maker
Переглядів 18610 місяців тому
Performing quick edits at make.powerpages.microsoft.com to explore the capabilities of this what you see is what you get method.
Setting up your first Power Page Site
Переглядів 25611 місяців тому
In this video we will set up a Power Page Site (aka Dynamics Portal) for the first time including a Trial of Dynamics.

КОМЕНТАРІ

  • @mannyb4265
    @mannyb4265 15 днів тому

    Thank you Marius, this is a very clever and novel solution

  • @lynnellbonaguidi3836
    @lynnellbonaguidi3836 4 місяці тому

    P r o m o S M 🔥

  • @Hasuna9
    @Hasuna9 6 місяців тому

    One question. So i have a customer that can log into the account and view his Delivery Company, which works fine. However when i go into the details page, the delivery company has different drivers associated with that company. So on the details page i have a list that should show the driver for that company, but unfortunately it also shows the drivers for other companys, but still associated with the customer only. How do i fix that?

    • @EverythingAroundDataverse
      @EverythingAroundDataverse 6 місяців тому

      The details page probably contains a query parameter like ?id=00000000-0000-0000-0000-000000000000. You can assign url parameters to variables like this: {% assign id = request.params['id'] %} And then you can add a filter to your fetchxml like this: <filter> <condition attribute="new_deliverycompany" operator="eq" value="{{id}}" /> </filter> This will make your query adapt to the delivery company currently being shown. In terms of you see only the drivers associated to the customer: That is probably within the Table Permission (found in Set up). I suspect that the permissions here are set up based on the relationship between the customer and driver, allowing only reading those associated.