Multi Line Textbox
Posted: 05 Jan 2017
Is there a way to have a plain multiline textfield to autoscroll to the bottom on load of form using javascript or JQuery. I cant figure this out in SP Forms
Design SharePoint forms with tabs, complex tables, accordions, sub-lists, and 3rd party columns
https://spform.com/forum/
Code: Select all
var textBox = fd.field('FieldName').control()._el().find('input');
textBox.scrollTop = textBox.scrollHeight;