Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Fill in fields on a fom from a date select

Status
Not open for further replies.

crimmelcp

Programmer
Oct 13, 2004
31
0
0
US
I am trying to select a date from a pop up calendar and fill in text fields for the month, day, and year.
Any help would be appreciated.

Thanks
Charlie Crimmel

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Search</title>

</head>

<body>
<center>
<br><br>
<table>
<tr>
<td width="600" align="center"> 
<cfform name="Form" format="flash" skin="halogreen" preloader="false" width="600" height="600">

<cfformgroup type="accordion" label="search" width="500">
	<cfformgroup type="page" label="Select a Payweek" width="500">
		<cfinput type="datefield" name="Payweek" label="Payweek" width="200">
		<cfinput type="text" name="Month" label="Month" width="200">
		<cfinput type="text" name="Day" label="Day" width="200">
		<cfinput type="text" name="Year" label="Year" width="200">
	</cfformgroup>
</cfformgroup>

<cfinput name="payweekbutton" type="submit" value="Enter">
</cfform>
</td></tr></table></center>
</body>
</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top