Is there anyway to use variables that were created and used on previous forms in a single instance of a process with javascript (without putting the fields on the form with the javascript)? I know we can use variables in HTML controls that are on subsequent forms in the process, and the data stored in those variables will appear in the HTML controls and will be sent into Laserfiche. But I'd like to use javascript to get the values of some of those variables and do something with the values.
My use case: I'm developing a form for a customer. The form, by necessity, has a very large number of fillable fields, which presents a problem in terms of performance. (I've been told to keep the number of fillable fields on a single form to less than 100.) At some point in the near future, the number of fields will be too much for one form to handle. Right now, I have over 150 fillable fields and I'm not done with the form. I can easily see that number doubling or tripling based on the customer's needs. I can split the form into multiple forms while it's being processed by users, but in the review stage and the save to Laserfiche task, the form needs to be one continuous document without gaps within a page. If I can limit the number of fillable fields I put on the review and save to Laserfiche forms by using data already stored in field variables from previous forms in the process, I can actually make a single review form work and have decent performance.
Thanks for your thoughts on this!