Hi,

 From link I'm opening a window where I'm selecting a username from a 
dropdown selection and then passing that form variable to another 
template.  The first window size is width=340, height=180

If I try to open another window using JS with different width/height 
settings my form.variable doesn't get passed?


users.cfm
========

<html>
<head>
<title></title>
</head>

<body >

<form action="properties-users-action.cfm" method="post">
                         <select name="propertiesuser" size="1" 
class="formfield">
                                 <option value="#" 
selected>Select...&nbsp;</option>
                                         <cfoutput query="Users" group="user">
                                                 <option 
value="#User#">#User#</option>
                                         </cfoutput>
                         </select>

                         <input type="submit" value="Info" class="navlinks">
                         <input type="button" value="Close" 
class="navlinks" onClick="self.close()">

</form>

</body>

</html>


properties-users-action.cfm
======================

<html>
<head>
<title></title>
</head>

<body>

<cfoutput>
FORM.propertiesuser: #FORM.propertiesuser#<br>
</cfoutput>

</body>

</html>


+-----------------------------------------------------------------------------------+ 

Philip Humeniuk
[EMAIL PROTECTED]
[EMAIL PROTECTED]
+------------------------------------------------------------------------------------+


______________________________________________________________________
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to