Expand my Community achievements bar.

PDF Rendering/Printing problem

Avatar

Level 4

Dear All,

I have 2 problems when trying to print a PDF.

After I flatten the PDF to generate PS, I find that:

1) The dynamic dropdowns will show the data value only (Because the event to init. dropdown did not fire?)

2) Some control which should make invisible by script is now visible (Becaue the event contain the script did not fire?)

Thanks in advance

Regards

Bill

2 Replies

Avatar

Level 4

Hi all,

Any idea? Or it just cannot be done and I need to :

1) Make a process to mapping the data to display value

2) Make a difference form for all possible format

Regards

Bill

Avatar

Level 10

Did you try all these before flattening your PDF?

I think the writing script in initialize event will not workout at this point.

For drop-down, you can try something similar to this:

On Change event:

var tempValue = event.newText;

On presubmit event:

this.rawValue = tempValue;

Try all these before falttening your PDF and let me know the result.

Nith