Monday, 24 September 2018

Chrome update bug in dynamics CRM

Chrome update bug in dynamics CRM

Bug : when you create a second contact using quick Create in Account from. the quick create form wont display completely.

solution : Copy paste the following code in the quick create form in contact Entity.



function chromeFix() {
var isChrome = !!window.chrome && !!window.chrome.webstore; //checks browser
if (isChrome) {
if (window.top.document.getElementsByClassName("mscrm-globalqc-iframe")[0].style.height == "0px") {

window.top.document.getElementsByClassName("mscrm-globalqc-iframe")[0].style.height = "200px"; //your quick view form height
}
}
}

No comments:

Post a Comment

Updating Records Without Triggering Plugins – Bypassing Plugin Execution in Dynamics 365 / Dataverse using C#

  Recently, we had to write a small utility—a console application—that would go and update a bunch of existing records in our Dynamics 365 e...