|
I have an ColdFusion application that uploads documents into a database. When the user browses for the document on their hard drive, a pop up window opens. The user then selects the document and then it should insert the document in the original input field without causing any changes in the other text fields; however, when the document is selected, the other fields in the application are erased. Is there any JavaScript that will stop the loss of info in the other fields? Or is this a ColdFusion problem?
|
|
|
it`s not a cold fusion problem
You should use something like window.opener.document.formname.fieldname
from the pop up to access the opener page.
|
|
|
yes, i that`s exactly what i did. thanks for your help, anyways!
|
|
|
|
|
|
|
|