I have a process where I if a case/incident is considered 'Closed' we disabled most of the fields on the case except for the one where you can re-open the case. So I have some JS code like this in the form onLoad event where I loop through all the controls:
if(ctrl.getName() == "custom_resolution") { ctrl.setDisabled(false); };
The trouble is that with this multi-line text field for case resolution. If the field overflows the 10 lines I give them to view, and the user is in IE 9/10 the scroll bar is there but they cannot scroll up/down through the text.
In Chrome, they are able to do this just fine... and this used to work in CRM 4.0 from what I recall.
Ideas?