>> I'm trying to pass multiple values back to my form from a popup...
>> Bascialyl I want to pass the value and the display of my select from the
>> popup back to the form.... Can anyone tell me how to do this???

oops! Forgot to answer the question in my last reply ...

Using javascript, you would return variable using window.opener ... i.e.

<select onchange="myfunction();">...</select>

<script language="javascript">
        function myfunction() {
                sel = document.myform.myselect;
                window.opener.document.myform.myhiddenfield.value = sel.value;
                window.opener.document.myform.myhiddenfield2.value =
sel.options[sel.selectedIndex].someproperty
        }
</script>

I don't remember the name of the property for the label off the top of my
head, sorry...

Isaac Dealey
Certified Advanced ColdFusion Developer

www.turnkey.to
954-776-0046
______________________________________________________________________
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to