Thursday 28 February 2013

Disable View of Look Up Record dialog


function SupplierLookup() {
    document.getElementById("customerid").setAttribute("lookuptypes", "1");
    document.getElementById("customerid").setAttribute("defaulttype", "1");
    Xrm.Page.getControl("customerid").setDefaultView("36C01218-C55F-E211-BACF-00155D000B45"); // View Id
    document.getElementById("customerid").setAttribute("disableViewPicker", "1");
}

No comments:

Post a Comment