Master Deep Linking in PowerApps: The Ultimate Guide - 2024

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ต.ค. 2024

ความคิดเห็น • 10

  • @StephMarshall
    @StephMarshall  3 หลายเดือนก่อน

    Code Snippets
    *StartScreen*
    Switch(
    Param("screenname"),
    "Manager",
    ScreenDetails,
    "Admin",
    ScreenGallery,
    "Submitter",
    ScreenDetails,
    ScreenNew
    )
    *OnStart*
    //Deep Linking
    If(
    !IsBlank(Param("ID")),
    Set(
    varThisItem,
    LookUp(
    {LIST NAME},
    ID = Value(Param("ID"))
    )
    );
    Switch(
    Param("screenname"),
    "Submitter",
    Set(
    varFormMode,
    FormMode.View
    ),
    "adminReview",
    Set(
    varFormMode,
    FormMode.Edit
    )
    )
    );
    //Set Tabs
    If(
    Param("screenname") = "Submitter",
    ClearCollect(
    colTab,
    {
    Name: "Employee Details",
    Order: 1
    }
    ),
    ClearCollect(
    colTab,
    [
    {
    Name: "Employee Details",
    Order: 1
    },
    {
    Name: "Department Mgr/Director",
    Order: 2
    },
    {
    Name: "HR",
    Order: 3
    },
    {
    Name: "Notes",
    Order: 4
    }
    ]
    )
    );

  • @giovanninieto3628
    @giovanninieto3628 หลายเดือนก่อน

    God bless your work. :)

    • @giovanninieto3628
      @giovanninieto3628 หลายเดือนก่อน

      Works for the most part on what screen the deeplink sends you too. However, I have a vertical gallery and galselected on one screen to view and edit a record. The process in the video is clear but my set-up didn't work with it 100% :(

    • @StephMarshall
      @StephMarshall  หลายเดือนก่อน

      If you want to share your code, I can help you with troubleshooting!

  • @augustusmokoka1100
    @augustusmokoka1100 3 หลายเดือนก่อน +1

    thank you so much.after months and months struggling with this.The old videos from others dont work anymore

    • @StephMarshall
      @StephMarshall  3 หลายเดือนก่อน

      Glad I could help!!

  • @Ray-cm5is
    @Ray-cm5is 3 หลายเดือนก่อน

    Great video Steph. Came here from reddit.

    • @StephMarshall
      @StephMarshall  3 หลายเดือนก่อน

      Awesome! Thank you!

  • @buddy2hof
    @buddy2hof 3 หลายเดือนก่อน

    This video really helped me navigate my users to the correct page of my app. I noticed your app has the ability to open past entries. My app has 5 pages that will be shared amongst 3 different departments of my office. All the data the users enter into the app gets saved to a SharePoint list I’ve made for each separate page. Do you have any advice for me on how to make the data entered onto the app reappear when the next user in the workflow clicks the link to the app? Thanks for the great video.

    • @StephMarshall
      @StephMarshall  2 หลายเดือนก่อน

      You can set a refresh of the data set or collect the data on successful form submission. If you give me more details I can whip up a demo 😎