View Single Post
  #3 (permalink)  
Old 15-01-2008, 02:09 PM
iamfreelancer's Avatar
iamfreelancer iamfreelancer is offline
Vibrate your Brain Please
 
Join Date: Sep 2005
Location: in my body lar...
Posts: 1,254
Rep Power: 66
iamfreelancer will become famous soon enough iamfreelancer will become famous soon enough
on your popup window:-
use a your database scripting (php/asp/.net) to load the data into a form fields.... Upon close proccess your selected form value (checked item) and use javascript to to pass back the selected data on this popup window to its parent window.....

Example Javascripts:
Quote:

<script type="text/javascript">
window.opener.document.getElementById("PARENT_FORM _FIELD_ID").value = 'YOUR VALUE TO PASS BACK';
</script>
'window.opener" is your parent window....
Reply With Quote