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 email server is running an evaluation copy of the MailShield anti-
spam software. Please contact your email administrator if you have any
questions about this message. MailShield product info: www.mailshield.com

-----------------------------------------------
To post, send email to [EMAIL PROTECTED]
To subscribe / unsubscribe: http://www.dfwcfug.org

Reply via email to