knowledgecenter-breadcrum

Knowledge Center

16 Feb, 2020

How to add custom HTML web resource on a form and use DataTable plug-in to display a grid?

Posted on 16 Feb, 2020 by Admin, Posted in Dynamics 365

How to add custom HTML web resource on a form and use DataTable plug-in to display a grid? Blogs

How to add custom HTML web resource on a form and use DataTable plug-in to display a grid?

Introduction

In this blog I have explained How to add custom HTML web resource on any dynamic 365 form to display data in a grid. To display data in grid format I used DataTable plug-in.

Solution

When we use custom HTML web resource, then we need to manually design the web page. It means to present data nicely on HTML web resource we should use bootstrap, jQuery, CSS and JavaScript. DataTable is the free jQuery plug-in which is used to display data in table format. It is a highly flexible tool, built upon the foundations of progressive enhancement, that adds all these advanced features to any HTML table. We will use DataTable to display data in grid format.
Below are the steps to add HTML web resource and code to display related contact in a grid on account form as an example.

Step by step

First, create a HTML document to display related contact.

tag:tag for getting execution context as following:

tag, add table using tag and give appropriate id table as following:

  • Add any class from dataTable.css to use style for grid like I used “cell-border”.
  • Now write a JavaScript code to retrieve related contact and incorporate to table using dataTable jQuery plugin. You can write as following:
  • In above code, firstly, I passed parent customer id, which I took from execution context to function. In function I fetched records from contact table, those having same parent customer id. After that I passed the result to dataTable by matching columns. Here I used WebApi.retrieveMultipleRecords method to retrieve records.
  • Now, save the file.
  • Add that file as a web resource to Dynamics 365. Be sure to select HTML Page as the type and upload the HTML page using the Browse button. Save and publish the web resource. Next, we’ll add it to the Account form.
  • Next, navigate to the Account form and add a new web resource from the Insert tab.
  • Refresh your Account form and the HTML page will appear on the page.
  • I added HTML page in new tab, and it look like following:

Comment

This is a Required Field

Loading

Recent Updates

Embed PowerBI Report To Form
Blogs
09 Sep, 2026

Embed a Power BI Report on a Dynamics 365 Form, Filtered to the Record You're Viewing

Most Power BI reports in a Dynamics 365 environment live somewhere the user has to go and find: a dashboard,…

READ MORE
Blogs
08 Sep, 2026

How to Dynamically Retrieve SharePoint Drive IDs and List GUIDs for Power Automate

Introduction Many times, we come across scenarios where we need to populate a Word template in Dynamics 365 using Power…

READ MORE
Blogs
11 Aug, 2026

How to Remove an Unmanaged Layer from a Dataverse Email Template

Overview Email Templates in Microsoft Dataverse make it easy to reuse email content such as subject lines, message bodies, and…

READ MORE