Hi,
Yes, PDF is getting created before the form gets actually loaded completely.
So in a nutshell, we need to provide some time before the PDF gets captured. that we can achieve using "Conversion Delay" parameter.
But unfortunately, Save as PDF function on the form doen't have this parameter but we do have some smartobject which take conversion delay as an input.
You can find those SMO named "PDF Convertor" under System-> Controls->Save as PDF, which has methods like Create PDF from URL which can help us in this scenario.
reference https://help.k2.com/kb001398
Thanks,
Divya Raj
If i add timer on the form and wait for specific time then also it is working.
But issue is why it is wokring in one environemnt and not in other envirorment. I checked all scripts and rules, Web.config on both enviornment and they are exact same.
The load time of any form depend on many factors, apart from the code like network so we cannot really point to one specific reason.
@BB33 I had a similar requirement and adding timer helped me get over the grey overlay. Thanks for the idea.