Expand my Community achievements bar.

Disabling scrolling in a Dynamic Form

Avatar

Former Community Member
Hello everyone. I'm currently successfully using a script to limit scrolling in static forms to eliminate the "+" that appears if a user enters more characters than will fit in a fillable text field. The problem I'm having is that when I try to use the same script in a dynamic form, it doesn't work. If anyone can help me with this I'd very much appreciate it. The script I'm using is as follows:



var myDoc = event.target;

var f = myDoc.getField("formname[0].subformname[0].fieldname[0]");

f.doNotScroll = true;



Again, it's only with dynamic forms I have trouble.
0 Replies