Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
RobinK #1
Flash Form & Checkbox
I'm having trouble changing this listbox code to checkboxes instead. Can you
help?
<cfselect name="binderyID" label = "Bindery Type" query="bindery"
value="binderyID" display="Bindery"></cfselect>
RobinK Guest
-
How do I use the form checkbox value?
I'm creating a form that has multiple checkboxes. I want to use ActionScript to update a text box/area with the values each checkbox as the checkbox... -
Checkbox/Database/Flash Form
I have an access DB with several yes/no fields that I want to appear as checkboxes in a flash form. When I try to query the db, the checkboxes... -
Checkbox value in MX7 Flash Form
I am testing multi-tab forms in MX7 using the last example from the HTML documentation for the cfformgroup tag. The cfdump just shows whether each... -
Checkbox Set To OFF Not In Request.Form
When using checkboxes on a form, if you uncheck them, the unchecked name/value pair in the Request.Form collection doesn't show up. It only shows... -
Yes/No checkbox in the form
I have a field called action in a table, to check if something requires action the user must check the box. The field in the table is defined as a... -
The ScareCrow #2
Re: Flash Form & Checkbox
See attached code
Ken
<cfoutput query="bindery">
<!--- if using flash form --->
<cfinput type="checkbox" name="binderytype" value="#bindery.binderyID#"
label="#bindery.Bindery#">
<!--- if not using flash form --->
<cfinput type="checkbox" name="binderytype" value="#bindery.binderyID#">
#bindery.Bindery#
</cfoutput>
The ScareCrow Guest
-
RobinK #3
Re: Flash Form & Checkbox
That's what I thought but when I switch to this my flash form no longer displays.
RobinK Guest
-
The ScareCrow #4
Re: Flash Form & Checkbox
Of cause, you can't name the checkboxes with the same name in a flash form. So
append the currentrow value to it.
This will also involve having to have a hidden field which will hold the
number of rows from the query.
See attached code
Ken
<cfoutput query="bindery">
<!--- if using flash form --->
<cfinput type="checkbox" name="binderytype_#CurrentRow#"
value="#bindery.binderyID#" label="#bindery.Bindery#">
</cfoutput>
The ScareCrow Guest



Reply With Quote

