I have a select box that is bound to a <cfdiv></cfdiv>
The code works in FF but in IE all I get is the spinning loading gif. I
don't get any errors thrown that are picked up with cfdebug. There are
no errors in my log files.
Any help would be appreciated. Thanks, Jim
This is my code:
<!--- Do this if found --->
<cfif SiteContracts2.recordcount GT 0>
<h4>The following equipment is covered under contract for
<cfoutput>#Site_ID# (#GetSiteInfo.site_name#)</cfoutput></h4>
<ol>
</li>
<cfif ConEquip.recordcount GT 1>
<li>Please Select Equipment:
<cfselect
name="SiteEquip" id="SiteEquip">
<cfoutput query="ConEquip">
<option value="#product#">#product#</option>
</cfoutput>
</cfselect>
</li>
<cfelse>
<li>Site Equipment: <cfoutput><input type="hidden"
name="SiteEquip" id="SiteEquip" value="#ConEquip.product#"
/>#ConEquip.product#</cfoutput></li>
</cfif>
<cfdiv
bind="url:load_prod_detail.cfm?this_product={SiteEquip}&this_site=#Site_
ID#" ></cfdiv>
</ol>
<p> </p>
<cfelse> <!--- display this --->
<h4> Site does not have any contract support.</h4>
</cfif>
------->
This is the page referenced in the cfdiv:
<!--- This loads product detail based on the selection of a drop down
list box --->
<cfinvoke
component="pti.PARView.portal"
method="getProdDetail"
returnvariable="getProdDetailRet">
<cfinvokeargument name="site_id" value="#url.this_site#"/>
<cfinvokeargument name="this_product"
value="#url.this_product#"/>
</cfinvoke>
<cfoutput query="getProdDetailRet">
<input type="hidden" name="Coverage" id="Coverage"
value="#getProdDetailRet.description#" />
<input type="hidden" name="Coverage_end_date"
id="Coverage_end_date" value="#getProdDetailRet.end_date#" />
<li>Description of
Coverage: #getProdDetailRet.description#</li>
<li>Contract End Date:
#Dateformat(getProdDetailRet.end_date,"mm/dd/yyyy")#
#Timeformat(getProdDetailRet.end_date," hh:mm:ss tt")#</li>
<!---
========================================================================
===== --->
<!--- <cfdump var="#SiteContracts#"> --->
<!--- IF IPC stop here if no contract for the site : --->
<cfif Session.concept is "IPC" AND SiteContracts.recordcount is 0>
<h3>Please contact the PAR HELP DESK for assistance.</h3>
<cfelse>
<li>
Select Type of Repair
Service: #getProdDetailRet.TYPE#
<!--- save this to pass it on --->
<!--- <input name="site_id"
type="hidden" value="<cfoutput>#url.this_site#</cfoutput>" /> --->
<input name="svrplan" type="hidden"
value="#getProdDetailRet.CATEGORY#" />
</cfif> <!--- test for IPC --->
</li>
</cfoutput>
Jim
James Papaleo
Webmaster / Senior Programmer /Analyst
PAR Technology Corporation
8383 Seneca Turnpike
New Hartford, NY 13413
(315) 738-0600 Ext 697
________________________________________________________________
To unsubscribe: send a message to [email protected] with
'Unsubscribe CFUGCNY' in the body.
To send a message to the list: [email protected]
List archives: http://www.mail-archive.com/[email protected]/index.html
Visit our website: http://www.cfugcny.org