![]() |
woodey2002 9/9/2019 |
Many thanks to Sergey for pointing this out to me some time back.. |
A
|
AndrewMark author 9/9/2019 |
Many thanks to Sergey for pointing this out to me some time back.. Try this...there are too many controls on that page and hiding those is not that fast. The easy workaround though is to hide those controls that you need to hide initially in PHP code. Those that you show/hide dynamically need to stay in Javascript event of course. But, for instance, hiding the controls in BeforeDisplay event will speed up your page significantly. Below is the code for BeforeDisplay event. Also remove the code that initially hides controls from Javascript OnLoad events, only leave the dynamic part there. $pageObject->hideField("BSCheckExpl"); $pageObject->hideField("BSCheckExpl2"); $pageObject->hideField("BSCheckExpl3");
|