Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
Orion709 #1
Submitting data from single tab using multiple tab form
I have a flash form with multiple tabs. When a submit button is pressed,
however, I would like only the information from the current tab to go to the
server.
I have tried disabling the fields on the non-selected tabs...
if (tabs.selectedIndex == 0)
{document.dateOrdered.enabled = false; ... }
and disabling the entire non-selected tabs
if (tabs.selectedIndex == 0)
{ tabs[1].enabled = false; ... }
This will indeed disable the field or tab on the form, but when the form is
submitted and I dump the form variables,
i.e.
<cfif IsDefined("form.fieldnames")>
<cfdump var="#form#">
</cfif>
they all still show up. Am I expecting the wrong results, or just going
about this the wrong way?
Thanks for any advice you can offer.
Orion709 Guest
-
Multiple emails when submitting a form?
Does anyone know whether or not you can have a form submit to multiple email address' when you submit a form? Especially when you distribute the... -
submitting data from a flash form in coldfusion
:confused; I am completely new to using flash forms in coldfusion web applications. I created a <cfrom format=flash> type form with a number of... -
Submitting data to database via form
When I submit data to my Access database, two things happen or rather don't happen. 1) the database is not updated and 2) I get an http 500 error... -
Update multiple rows data with a single button
hello I have been trying to run multiple update queries based on the data entered by user. Brief background: I am fetching data from various... -
Submitting multiple record IDs via a form.
I have a problem more to do with style than ability; I can solve this problem in a number of ways, but I'm keen to find the best way of doing...



Reply With Quote

