knowledgecenter-breadcrum

Knowledge Center

07 Aug, 2020

How to open forms as popup dialog in D365?

Posted on 07 Aug, 2020 by Admin, Posted in Dynamics 365 Dynamics 365 Project Service Automation Dynamics 365 Customer Service Dynamics-365 Sales

How to open forms as popup dialog in D365? Blogs

How to open forms as popup dialog in D365?

Introduction

Sometimes, clients want to edit or create new record without living current page. To create new record, we can use Quick Create form. But when we open existing record, then it will leave current page and opens a form page. In this blog, I have explained How to open forms as popup dialog in D365.

Solution

We can open entity forms as popup modal dialog using Xrm.Navigation.navigateTo through JavaScript. This is a new feature came with Dynamics 365 Release Wave 1 for 2020. Syntax of this function is as follows:

Xrm.Navigation.navigateTo(pageInput,navigationOptions).then(successCallback,errorCallback);

you can refer it from following link:

https://docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/clientapi/reference/xrm-navigation/navigateto

As example we will existing contact record :

var pageInput = {
      pageType: "entityrecord",
      entityName: "contact",
      formType: 2,
      entityId: "1bc0cdce-c598-ea11-a811-000d3a563be2"
};

var navigationOptions = {
      target: 2,
      position: 2,
      width: { value: 500, unit: "px" }
};
Xrm.Navigation.navigateTo(pageInput,navigationOptions).then(
  function success() {
      //successCallback
  },
  function error() {
     // Handle errors
  }
);

 

you can see contact record is opened as a popup at left side of the page and when you close this form, you will be on the same page.

We can change form size, position, and form type by setting different parameters as follows:

  • To open form on the left side of the page, we can set position = 2 in navigationOptions , and to open form at center of the page, we can set position = 1.
  • To open new record form, you can eliminate “entityId” from pageInput object.
  • To change the size of the modal we can set width parameter, which is an object which takes to parameters :
    • value: Number. The numerical value.
    • unit: String. The unit of measurement. Specify “%” or “px”. Default value is “px”.

As example, we are going to use different parameter than above example:

var pageInput = { 
    pageType: "entityrecord",
    entityName: "contact",
    formType: 2
 };
 var navigationOptions = {
      target: 2, 
      position: 1, 
      width: {value: 90, unit:"%"}
}

Xrm.Navigation.navigateTo(pageInput,navigationOptions).then(
  function success() {
      //successCallback
   },
  function error() {
  // Handle errors   
} );

At top-left corner you will see 2 buttons, 1 to close form and other to minimise and maximise the form.

As soon as we close dialog, it will call a successCallback function.

We can also open a HTML Web Resources as popup dialog. for that we need to set pageType to webresource and replace entityName to webresourceName as following :

var pageInput = { 
    pageType:"webresource",
    webresourceName:"nis_HTML_WebResource.html",
    formType:2
 };

Comment

This is a Required Field

Loading

Recent Updates

Case Study
06 Sep, 2024

Implementation of Business Central for a Trading Organization

Customer Overview A prominent trading organization sought to enhance its operational efficiency and streamline its business processes by implementing Dynamics…

READ MORE
Blogs
03 Sep, 2024

Optimizing Code Check-ins: Ignoring Unnecessary Files for a Cleaner Azure DevOps Repo.

Introduction In this blog, we will learn about the code check-in process in DevOps. After development, unnecessary files are sometimes…

READ MORE
Blogs
20 Aug, 2024

Configure Macros in Omnichannel to improve Agent Productivity

What are Macros? Macros are a set of sequential actions that a user performs. They enable users to perform daily…

READ MORE