Bind on multiple cfinput checkboxes
I'm trying to do something like this but it seems to not be working...
<cfinput type="checkbox" name="checkbox1" value="Yes"> Yes
<cfinput type="checkbox" name="checkbox1" value="No"> No
<cfinput type="checkbox" name="checkbox2" value="Yes"> Yes
<cfinput type="checkbox" name="checkbox2" value="No"> No
<cfinput type="checkbox" name="checkbox3" value="Yes"> Yes
<cfinput type="checkbox" name="checkbox3" value="No"> No
<cfdiv bind=url:qFile.cfm?field1={checkbox1@click}&field2={checkbox2@click}&field3={checkbox3@click} />
My only problem is, it updates when I use the first checkbox... but when I try the second and third checkboxes nothing happens until I change the first checkbox. How can I get the second and third checkboxes to trigger as well?
Am I missing something?
