web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Microsoft Dynamics 365 | Integration, Dataverse...
Unanswered

Pass String Parameter from Command Editor to Custom Page

(1) ShareShare
ReportReport
Posted on by 27

Hi everyone,

I have the following JS function applied to a Command Button. This is being used to open a Custom Page dialog in a Model Driven App. All working fine.

function openStrategicApproval(primaryControl, firstSelectedItemId, selectedEntityTypeName)
{
    // Centered Dialog
    var pageInput = {
        pageType: "custom",
        name: "new_requeststrategiccaseapproval_ad938",
        entityName: selectedEntityTypeName, // "sample_review"
        recordId: firstSelectedItemId // "{087AA308-B321-E811-A845-000D3A33A3AC}" 
    };
    var navigationOptions = {
        target: 2,
        position: 1,
                height: {
                    value: 300,
                    unit: "px"
                },
                width: {
                    value: 12,
                    unit: "%"
                }
    };
    Xrm.Navigation.navigateTo(pageInput, navigationOptions).then(
        function () {
            // Refresh the main form when the dialog is closed
            primaryControl.data.refresh();
        }
    ).catch (
        function (error) {
            // Handle error
        }
    );
}

Problem:

What I would like to do is pass a String parameter into this function so that I can leverage it in the Custom Page.

3857.Picture1.png

However, I cannot identify what I would need to revise in the JS function in order to accommodate the additional String parameter. In the example below, I have added the parameter into the openStrategicApproval function (primaryControl, firstSelectedItemId, selectedEntityTypeName, String). However, I am not well versed enough in JS to know where I need to place it. For example, I have added it into the Custom page object, but I do not think this is correct.

JS Code:

function openStrategicApproval(primaryControl, firstSelectedItemId, selectedEntityTypeName, String)

{

    // Centered Dialog

    var pageInput = {

        pageType: "custom",

        name: "new_requeststrategiccaseapproval_ad938",

        entityName: selectedEntityTypeName, // "sample_review"

        recordId: firstSelectedItemId, // "{087AA308-B321-E811-A845-000D3A33A3AC}"

        powerautomateflow: String

    };

    var navigationOptions = {

        target: 2,

        position: 1,

                height: {

                    value: 300,

                    unit: "px"

                },

                width: {

                    value: 12,

                    unit: "%"

                }

    };

    Xrm.Navigation.navigateTo(pageInput, navigationOptions).then(

        function () {

            // Refresh the main form when the dialog is closed

            primaryControl.data.refresh();

        }

    ).catch (

        function (error) {

            // Handle error

        }

    );

}

 

Custom Page Formula

0121.picture2.png

Best regards,

I have the same question (0)
  • Haig Liu Profile Picture
    Microsoft Employee on at

    Hi ImranAmi,

    Please take a look at the following link: 

    https://dynatecon.com/2022/07/25/call-custom-page-with-parameters-from-model-driven-app-using-new-command-editor/

    I'm not sure if the mid() function is being used correctly,

    as I use JS rarely, usually like the following:

    Set(RecordItem,
    If(IsBlank(Param("recordId")),
    Blank(),
    LookUp(Accounts, Account = GUID(Param("recordId")))
    )
    )

  • Ami K Profile Picture
    27 on at

    Thanks Haig Liu but it is not the recordId I am having trouble with. As mentioned in my post everything is working fine.

    What I want to do is return a different String parameter.

  • BethV Profile Picture
    3 on at
    I realize this is an old post, but I was wondering if you ever figured out how to make this work.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Neeraj Kumar – Community Spotlight

We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…

Leaderboard > Microsoft Dynamics 365 | Integration, Dataverse, and general topics

#1
Siv Sagar Profile Picture

Siv Sagar 93 Super User 2025 Season 2

#2
#ManoVerse Profile Picture

#ManoVerse 80

#3
Martin Dráb Profile Picture

Martin Dráb 64 Most Valuable Professional

Last 30 days Overall leaderboard

Product updates

Dynamics 365 release plans