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