Ask a Question related to Coldfusion Database Access, Design and Development.
-
quiero mas #1
onchange="this.form.submit()" trouble
Happy New Year Everone
I have a two select drop down menu. The first populates the second.
Problem: After i attach the submit button the page jumps to the result page as
soon as the first selection is made
I know the problem in the code - onchange="this.form.submit()" is in the
first selects code. So its doing just what im telling it to do but i dont know
what to change onchange="this.form.submit()" to
Any help most appreciated
Code Below
<cfoutput>
</cfquery>
<select name="select_Main_Group" required="yes" onchange="this.form.submit()">
<option>Select Area</option>
<cfloop query="get_Main_Group">
<option value="#group_id#" <cfif
isDefined('form.select_Main_Group')><cfif form.select_Main_Group eq
"#group_id#">selected</cfif></cfif>>#group_name#</option>
quiero mas Guest
-
Get Checkbox "Checked" value on form submit
How do I get whether a checkbox is ticked in a form on a form's submission (true or false)? How do I use the Request object in ASP? -
CFcalendar onchange submit form
I'm trying to use the CFCALENDAR to submit my form using ONCHANGE. I don't know ActionScript, which is required by ONCHANGE, but was able to find... -
Acrobat Form Submit error: changes VALUE="true" to "0"
I wrote an HTML page with a form. In the form I had many inputs as in: <INPUT TYPE="radio" NAME="Q1" VALUE="true"> and <INPUT TYPE="radio"... -
#25366 [NEW]: form buttons of type "image" dont send "submit" $_POST variable in IE
From: jordanolsommer at imap dot cc Operating system: Windows XP PHP version: 4.3.2 PHP Bug Type: Variables related Bug... -
jorgepino #2
Re: onchange="this.form.submit()" trouble
you could use
<cfif ParameterExists(form.secondpulldown)>
jorgepino Guest
-
Dan Bracuk #3
Re: onchange="this.form.submit()" trouble
Get rid of the code and use a submit button. What you are attempting is as user unfreindly as it gets.
Dan Bracuk Guest



Reply With Quote

