- see footer for list info -<
I Didn't read it. It just happend on this application .... Ooops sorry
blanket statement about IE6 might upset someone ..... ;-)
Try it and see what you get. Of course remove the hidden field first
<script language="JavaScript"><!--- Please wait when submit button clicked
--->
<!--
function submitForm()
{
document.AddForm.clickme.value = "Please Wait...";
document.AddForm.clickme.disabled = "disabled";
return true;
}
//-->
</script>
<!--- Get the Who For (Phase) --->
<CFQUERY NAME= "WhoFor" DATASOURCE="#Application.StudySupportDSN#">
SELECT PhaseIDPK, Phase
FROM tblPhase
ORDER BY Phase
</CFQUERY>
<!--- Get the When --->
<CFQUERY NAME= "TakesPlace" DATASOURCE="#Application.StudySupportDSN#">
SELECT TakesPlaceIDPK, TakesPlace
FROM tblTakesPlace
ORDER BY TakesPlace
</CFQUERY>
<!--- Get the Skills --->
<CFQUERY NAME= "Skills" DATASOURCE="#Application.StudySupportDSN#">
SELECT SkillsIDPK, Skills
FROM tblSkills
ORDER BY Skills
</CFQUERY>
<p>
<cfform name="AddForm" action="formsubmit.cfm?ID=1"
enctype="multipart/form-data" onsubmit="submitForm();">
<input type="hidden" name="SendSomething" value="x" />
<table border="0" class="itemTable" width=100%>
<tr>
<td>Directory of providers.</td>
</tr>
<tr>
<td>Select from the choice boxes and / or enter free text in the box
below and press
'Start search' to find matching current activities.</td>
</tr>
<tr>
<td>
<table border='0' cellpadding='10' cellspacing='4' class="itemTable"
width=100%>
<tr>
<td valign="top" align="center">WHO
FOR (Phase)</td>
<td>WHEN</td>
<td>SKILLS / KEY LEARNING
AREAS</td>
</tr>
<tr>
<td valign="top" align="left"
class="TableStripe">
<cfoutput
query="WhoFor">
<cfinput type="checkbox"
name="select_Phase" value="#PhaseIDPK#">
#Phase#<br />
</cfoutput>
</td>
<td valign="top" align="left"
class="TableStripe">
<cfoutput
query="TakesPlace">
<cfinput type="checkbox" name="select_Place"
value="#TakesPlaceIDPK#">
#TakesPlace#<br
/>
</cfoutput>
</td>
<td valign="top" align="left"
class="TableStripe">
<cfoutput
query="Skills">
<cfinput type="checkbox"
name="select_Skill" value="#SkillsIDPK#">
#Skills#<br />
</cfoutput>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="right">
<input name="clickme" type="submit"
value="Search">
</td>
</tr>
</table>
</cfform>
Regards - Paul
_______________________________________________
For details on ALL mailing lists and for joining or leaving lists, go to
http://list.cfdeveloper.co.uk/mailman/listinfo
--
CFDeveloper Sponsors:-
- Hosting provided by www.cfmxhosting.co.uk -<
- Forum provided by www.fusetalk.com -<
- DHTML Menus provided by www.APYCOM.com -<
- Lists hosted by www.Gradwell.com -<
- CFdeveloper is run by Russ Michaels, feel free to volunteer your help -<