Hi all,
I want to use the new style form header section on my case form to contain the status reason option set.
The case status reasons are fairly long and so I want to display the full text.
Given that we can't control the width of these header tiles natively, I've managed to add an unsupported bit of javascript which very nearly does the trick, the tile expands to display more of the status reason.
function LoadChangeHeaderTiles() {
changeHeaderTileFormat();
setInterval(changeHeaderTileFormat, 1000);
}
function changeHeaderTileFormat() {
var headertiles = document.getElementsByClassName("ms-crm-HeaderTileElement");
if (headertiles != null) {
for (var i = 0; i < headertiles.length; i++) {
headertiles[i].style.width = "200px";
}
}
}

However, ideally I need the optionset header control width to also expand for a better user experience. As you can see, when you go to make a selection it truncates the text and means the users have to hover over the option to see the full text.

I'm assuming there is no supported way to achieve this but if anyone has found or knows a way to overcome this I'd love to hear from you.
This is CRM 2015 On-Premises, Case Entity.
Thanks
Alex