If I'm reading it right..
set up a form variable
<cfparam form.selectedMonth = "" />

I'd define a CSS clss for hightlightedTD that alters the background
color, or something

Then during the output..
<td class="<cfif form.selectedMonth eq
foo.selectedMonth>highlighted<cfelse>normal</cfif>">#foo.data#</td>
....
....

make sense?





On 9/22/07, Adkins, Randy <[EMAIL PROTECTED]> wrote:
> Ok are you getting an error when you first come to the page?
>
>
>
> -----Original Message-----
> From: Peter Tanswell [mailto:[EMAIL PROTECTED]
> Sent: Saturday, September 22, 2007 10:03 AM
> To: CF-Talk
> Subject: Re: urgent help required - using a users selection to select
> specific data
>
> Hi yes - the form is being resubmitted to itself.
>
>
>
>
> On 9/22/07, Adkins, Randy <[EMAIL PROTECTED]> wrote:
> >
> > One issue, is your probably getting an error from:
> > FORM.TIMEDATE_PERIOD does not exist.
> > Unless the form is being submitted from a previous form.
> >
> > Are you submitting the form right back to itself?
> >
> > If not, then why do you need the <CFIF> statement in the OPTIONs
> >
> > If so, add a form parameter at the top of the page:
> > <cfparam name="form.timedate_period" default="">
> >
> >
> >
> > -----Original Message-----
> > From: Toby King [mailto:[EMAIL PROTECTED]
> > Sent: Saturday, September 22, 2007 10:27 AM
> > To: CF-Talk
> > Subject: urgent help required - using a users selection to select
> > specific data
> >
> > Hi there
> >
> > I'm really stuck on this issue - have been trying to work it out for
> > several hours so would really appreciate some input as to what I need
> > to do.
> >
> > I have displayed on screen an option where a user can select a month
> > of a year to select specific data.
> >
> >
> > <table>
> > <form action="avgHours.cfm" method="post" name="form1"> <tr
> > class="printhide"> <td align="center"> <b>Graph Comparison Month</b>
> > <select name="timedate_period" onChange="document.form1.submit()">
> > <cfloop query="CHECK_Periods">
> > <option value="#timedate_id#" <cfif form.timedate_period eq
> > Check_Periods.timedate_id>selected</cfif>>#dateformat(dateend, "mmmm
> > yyyy")# </cfloop> </select> <input type="submit" value="Generate
> Report"
> > style="font-weight:bold;color:dodgerblue;background-color:white;border
> > :n
> > one;">
> > </td>
> > </tr>
> > <tr class="printhide"><td>&nbsp;</td></tr>
> > </form>
> > </table>
> >
> >
> >
> >
> >
> >
> >
> >
>
>
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:289197
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to