Hi All,
I want to increase the CRM field label width more than 250. How can I achieve that?
I tried using something this given below but didn't work:
function LoadChangeHeaderTiles() {
changeHeaderTileFormats();
setInterval(changeHeaderTileFormats, 1000);
}
function changeHeaderTileFormats() {
var headertiles = window.parent.document.getElementsByClassName("ms-crm-InlineEditLabelText");
if (headertiles != null) {
for (var i = 0; i < headertiles.length; i++) {
headertiles[i].style.width = "400px";
headertiles[i].style.maxWidth = "400px";
}
}
}
*This post is locked for comments
I have the same question (0)