I deal with dynamics CRM 2011 online and I faced some troubles with printing documents there.
If there is a scroll into a form so in print window it'll too and I can't do anything with that coz there is any editing function there.
I'm interested could I resize/expand a text field in order to make a text visible for user without any scrolling?
Is there any method in JavaScript that can remove scroll by resizing field?
In dynamics CRM I may use such functios on an onload event.
thanks in advance
tried
function textAreaAdjust(o) {
o.style.height = "1px";
o.style.height = (25+o.scrollHeight)+"px";
}
got an error:
'style' - is null or it's not an object