knowledgecenter-breadcrum

Knowledge Center

24 Mar, 2025

How to Dynamically Filter Subgrid Records in D365 CE

Posted on 24 Mar, 2025 by Shoaib Khan, Posted in Dataverse Power Platform

Blogs

Introduction

 

In Microsoft Dynamics 365, there are scenarios where subgrid data needs to be filtered dynamically based on user selections. This blog explains how to achieve dynamic filtering of subgrid records using JavaScript to improve data visibility and enhance user experience.

 

Use Case

Consider a scenario where a user is working on an Account form in Dynamics 365. The Contacts subgrid displays related contacts, and another subgrid should dynamically filter and display Opportunities based on the selected contact.

 

Our goal is to:

 

Capture the selected contact from the subgrid.

Dynamically filter the Opportunities subgrid based on the selected contact.

Ensure the subgrid refreshes to reflect the applied filter.

 

Implementation: JavaScript for Subgrid Filtering

 

1. Storing the Form Context

 

When the form loads, we store the execution context globally for use across different functions

 

 

2. Handling Subgrid Selection

 

To detect when a user selects a contact in the subgrid, we add an on select event.

 

 

3. Applying the Filter to the Opportunities Subgrid

 

Dynamically construct a FetchXML query to filter the Opportunities subgrid based on the selected contact. Here, we have to use GlobalFormContext to get control of Subgrid.

 

Registering the JavaScript in Dynamics 365

 

1. Upload the JavaScript File

 

  1. Navigate to Power Apps → Solutions → Web Resources.
  2. Upload the JavaScript file and publish it.
  3. Ensure all JavaScript code is in the same web resource file.

 

2. Register the Events in the Form

 

  1. Form OnLoad Event – Register Onload on the Account form’s OnLoad event.
  2. Subgrid OnSelect Event – Register subgridOnSelect on the Contacts subgrid’s OnRecordSelect event.

 

How This Enhances User Experience

 

Dynamic filtering – The Opportunities subgrid instantly updates based on the selected contact.

Increased efficiency – Users no longer need to manually search for related opportunities.

Seamless interaction – The subgrid updates in real-time without requiring a full-page refresh.

 

Conclusion

By leveraging JavaScript and FetchXML in Dynamics 365, we have successfully implemented dynamic subgrid filtering. This approach improves usability and ensures users see only the most relevant records, enhancing overall CRM efficiency.

If you are working with Dynamics 365 and need to optimize data visibility, implementing dynamic subgrid filtering is a powerful way to enhance your forms! smiley

Comment

This is a Required Field

Loading

Recent Updates

Blogs
27 Feb, 2026

How to Use Parameters in Power BI to Connect to Microsoft Dataverse

When working with multiple environments in Microsoft Dataverse (DEV, TEST, PROD), hardcoding the environment URL inside Power BI Desktop creates…

READ MORE
Blogs
25 Feb, 2026

Power Apps Production Deployment Checklist: Best Practices for a Smooth Go-Live

Introduction In Power Apps, even a small mistake during deployment can impact users and business processes. This checklist will help…

READ MORE
PCF Ribbon Button Thumbnail
Blogs
16 Feb, 2026

Launching a PCF Control from a Ribbon Button using Custom Pages in Dynamics 365

Introduction: In Model-driven apps, PCF controls are typically embedded inside forms or views. However, unique business requirements often demand more…

READ MORE