cancel
Showing results for 
Search instead for 
Did you mean: 

InterActive Form rendering problem

Former Member
0 Kudos

Hi all,

In the Interactive form "Date" field is not invisible in the Runtime(server),but in PDF preview the date field is visible,

i have checked script also it's correct,but after save the pdf and again i will open the pdf using live cycle designer and i will save as dynamic pdf,after opening the pdf "date" field is visible,

for server side i need to check anything or form side i need to check any properties,plz any one suggest

Regards,

vinoth

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Vinoth,

I think the problem is with the dynamic property of the form.

So just place this code in the doModifyview method of the view that contains Interactive Form UI element:


    IWDInteractiveForm Form = (IWDInteractiveForm)
view.getElement("NAME OF THE INTERACTIVE FORM UI ELEMENT");
    Form.setDynamicPDF(true);

Hope this helps

Thanks

Amita