Skip to main content

Notifications

Announcements

No record found.

Microsoft Dynamics CRM (Archived)

Sub Grids Not Loading on Form

(0) ShareShare
ReportReport
Posted on by 625

Hi Everyone, 

Have you encountered a scenario where in one of the CRM environments (luckily not prod), the sub grids on the account (renamed as customer) form were not loading and has a hyperlink to load but nothing happens? This happens on IE and Chrome, for Edge it partially loads some and for Firefox it is fine for us. But for the client who reported the issue its not working on any browser. Our CRM is Online 8.1.0.581. 

IE/Chrome:

0576.IE.png

Edge:

Edge.png

Firefox:

FF.png

*This post is locked for comments

  • A.Stark Profile Picture
    A.Stark 625 on at
    RE: Sub Grids Not Loading on Form

    Nithya's suggestion to use script works across browsers, but this was the quick fix. Will follow Alex and reach out for support to identify the root cause. Thanks for the input everyone.

    Update: Our CRM was updated from 8.1.0.578 to 8.1.1.977 and after this the sub grids works fine even without script

  • Verified answer
    ashlega Profile Picture
    ashlega 34,475 on at
    RE: Sub Grids Not Loading on Form

    Hi,

     if it's the same configuration, and if the same works in one environment and does not work in another, that probably makes it a server issue.. might be worth contacting Microsoft support then.

  • Verified answer
    Nithya Gopinath Profile Picture
    Nithya Gopinath 17,074 on at
    RE: Sub Grids Not Loading on Form

    Hi,

    You could add some JavaScript to the form's OnLoad event to manually load all the sub-grids:

    function Form_OnLoad() {
        setTimeout("LoadSubGrids();", 2000); //need delay to work properly
    }
    
    function LoadSubGrids() {
        var grids = Xrm.Page.ui.controls.get(function (ctrl, index) {
            return (ctrl.getControlType() == "subgrid");
        });
    
        if (grids.length > 0) {
            for (var i in grids) {
                grids[i].refresh();
            }
        }
    }

  • Gopalan Bhuvanesh Profile Picture
    Gopalan Bhuvanesh 11,399 on at
    RE: Sub Grids Not Loading on Form

    Hi

    What happens when you clear the cache of these browsers or try in incognito/inprivate mode?

    Please refer the following for the compatibility:

    technet.microsoft.com/.../hh699710.aspx

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

Congratulations 2024 Spotlight Honorees

Kudos to all of our 2024 community stars! 🎉

Meet the Top 10 leaders for December

Congratulations to our December super stars! 🥳

Start Your Super User Journey

Join the ranks of our community heros! 🦹

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,711 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,458 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans