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
}
}
}

Introduction to Dynamics 365 CE Data Migration using ADF

Dynamics 365 CE Data Migration using ADF can be necessary for various reasons, such as archiving historical data, integrating with other sys...