So I can do some dynamic resizing of the textbox I want to get the height and scroll height for the method below. I cannot seem to do this with the RadTexBox. Thanks in advance.
| function Master_ResizeTextBox(sender, eventArgs) { |
| if (sender.scrollHeight > parseInt(sender.style.height.replace(/px/gi, ''))) { |
| sender.style.height = sender.scrollHeight + 'px'; |
| } |
| } |