Bug Found - Multiline Text Field
RE: BUG FOUND - Webforms that are created from a PDF which already have Multiline Form Fields inserted do not display entire text in the form when filled out. Works as expected when Multiline Text Field is created while creating the webform on the acrobat.adobe.com website.
-Create a Text Field in a PDF, set it to Multiline from within Acrobat Pro
-Create webform by upload that PDF with the Multiline Text Field
-Fill out the webform and create new lines within the Multiline Text Field by hitting enter and adding text to each line, making sure that a scroll bar appears to indicate you are entering text beyond the display limit of the box
-Submit the webform
-Check the completed webform and see that not all of the lines appear in the completed form
Note that when a Multiline Text Field is created during the webform creation/webform editing workflow within acrobat.adobe.com, submitted text in that Multiline Text Field is resized to fit the box when the webform is submitted. So you can view a form submission as long as there weren't too many lines for the text to resize small enough.
Opinion: While regular PDF form creation workflow from within Acrobat's desktop software is definitely power-user centered, it seems that the Webform workflow is supposed to be more approachable to those who don't have as much experience with Acrobat. I think having an option worded like "Limit number of lines to height of textbox" or "Disable Scrolling for this field" would greatly improve the user experience. I was able to find a script that does this, and I knew how to use that script, but I don't believe that many people who use these Webforms will know how to get around this situation. The script in question:
var myDoc = event.target;
var f = myDoc.getField("Form[0].SubForm[0].TextField1[0]");
f.doNotScroll = true;
Hello John,
Thank you for your detail information, we have review this issue and seems to be an intended behavior. Please feel free to leave any feedback again.
Sign in Acrobat Web Team
-
John Vasquez commented
Update: That script only works from within Acrobat software, such as Reader/Acrobat DC/Pro. It seems the webform does *NOT* carry field scripts over, so disabling the scroll function of a text box doesn't work.
Original bug remains, that Multiline Text Field behaves differently when it is created in Acrobat Pro than when it is created in the Webform workflow.
New bug? Or is this by design?: Custom scripts on fields don't transfer to webform