Search code examples
javascriptdynamics-crmdynamics-crm-2015

Dynamics CRM 2015 Online: SubGrid's control.SetParameter method is not available


I'm trying to populate a subgrid with fetchXml results in CRM 2015 online. One issue in the beginning was that document.getElementById("leadUmbrellaGrid"); returns null

function filterSubGrid() {

    var leadwithSameNameGrid = Xrm.Page.getControl("leadUmbrellaGrid").getGrid();//HAVE TRIED window.parent.document.getElementById("leadUmbrellaGrid"); //grid to filter
    var currentleadId = Xrm.Page.data.entity.getId();;
    if (leadwithSameNameGrid == null) {

        setTimeout('filterSubGrid()', 500);
        return;
    }
    //fetch xml code 
    var fetchXml = "<fetchxml goes here>";


    leadwithSameNameGrid.control.SetParameter("fetchXml", fetchXml); //set the fetch xml to the sub grid   
    leadwithSameNameGrid.control.refresh(); //refresh the sub grid using the new fetch xml

}

I have gone through this and this

I tried window.parent.document.getElementById as well but in both cases, the .control is null or undefined and end up with:

TypeError: Unable to get property 'SetParameter' of undefined or null reference

Would appreciate your help/tips. Thanks,


Solution

  • Here's the solution:

    1. We need to use window.parent.document.getElementById

    2. Wait for the control to load in the DOM.

    So the code would look like this:

    function filterSubGrid() 
    {
    
        var leadwithSameNameGrid = window.parent.document.getElementById("leadUmbrellaGrid");
        var currentleadId = Xrm.Page.data.entity.getId();;
        if (leadwithSameNameGrid == null) 
        {
            setTimeout(filterSubGrid, 500);
            return;
        }
    
        //fetch xml code 
        var fetchXml = "<fetchxml goes here>";
        if (leadwithSameNameGrid.control != null) 
        {
            leadwithSameNameGrid.control.SetParameter("fetchXml", fetchXml); //set the fetch xml to the sub grid   
            leadwithSameNameGrid.control.refresh(); //refresh the sub grid using the new fetch xml
        } 
        else 
        {
            setTimeout(filterSubGrid, 500);
        }
    }