![]() |
woodey2002 11/5/2021 |
Hi Jeff, I have built some massive forms in the past and never needed to worry about this as runner built add/edit pages are usually loaded instantly in my projects. I therfore wonder are you using some Javascript on the add page for example to hide a lot of fields hence the long loadtime? If so you can try loading using the BeforeDisplay event to speed things up by hiding the control pre page load and taking out hide line in your JS. BeforeDisplay --- $pageObject->hideField("your"); --- (Apologies if you the JS is not causing your problem but its the only thing I can think if for you) Cheers, |
J
|
JeffDeveloper author 11/5/2021 |
Hi Woodey2002 Amazing, you can't even compare the speed. It is exactly as you said, I have too much javascript trying to hide the fields and doing this in the BeforeDisplay is far better. Thank you, owe you one. Jeff |