cancel
Showing results for 
Search instead for 
Did you mean: 

Loosing the text field border

Former Member
0 Kudos

My application has an Adobe forms navigation. There is a next button in Form1 which takes the user to Form2. And there is a back button in form2 which would bring him back(using inbound/outbound plugs) to Form1. Each of this form is contained inside View and each of these views wdDoInit() methods contain the following code to make each form dynamic.

public void wdDoInit()

{

//@@begin wdDoInit()

IWDPDFDocumentInteractiveFormHandler iFormHandler = WDPDFDocumentFactory.getDocumentHandler(wdThis.wdGetAPI(),"Form1");

iFormHandler.getDocumentContext().setDynamic(true);

//@@end

}

But when I am in second form and hit the back button, the form 1 is displayed but it i see that the texbox border's getting loosed as soon as I come out of the text fields. Is it because the form lost its dynamic nature when it came back. Can you please advice me how I can retain the dynamic nature of the adobe forms all the time.

Thanks!

Surya.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Solved the problem myself by repeating the same lines of code in the plug method.

Thanks!

Surya.