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

Flow: how to change the style of your HTML table in Microsoft Flow

I built an HTML table in Flow and now I want to change its style. I want to add CSS style to the table rows. If we look at the  Data Operati...