|
Mailing Lists
|
Home / Groups / ColdFusion 8 (Scorpio)
cfwindow refreshes main pageI am a bit confused as to why this is occurring, but I am sure it is something I have done wrong. I am attempting to have a cfgid, that displays a list of issues that users have submitted on our intranet to the IT department. When you load the page, the first row of the cfgrid is selected and the cfwindow refreshes. It gives me an error, but once you click ok, it then loads the page and you can do anything including updating the information, but when you click on another row of the cfgrid, it starts to refresh the cfwindow, but then the entire parent page refreshes, but nothing loads. The parent page just hangs and you just see a white page. the following code is on one page in this order. ----- cfgrid ----- <cfform name="step1"> <cfgrid colheaders="yes" format="html" pagesize="15" bind="cfc:helpdesk.IssueDisplay({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection})" name="unresissues" striperows="yes"> <cfgridcolumn display="no" width="40" name="helpdesk_id" header="Request"> <cfgridcolumn display="no" name="it_member_id" header="AssignID" width="0"> <cfgridcolumn display="yes" width="80" name="helpdesk_fname" header="First Name"> <cfgridcolumn display="yes" width="80" name="helpdesk_lname" header="Last Name"> <cfgridcolumn display="yes" width="90" name="class_type" header="Classification"> <cfgridcolumn display="yes" mask="MM/DD/YYYY" name="helpdesk_date_created" header="Date Submitted" width="100"> <cfgridcolumn display="yes" name="assign_it_name" header="Assigned To"> </cfgrid> <cfinput type="button" name="GO" value="View Request" onClick="ColdFusion.Window.show('helpdeskdata')" /> </cfform> ------ cfwindow tag ----- <cfwindow name="helpdeskdata" title="Helpdesk Data" initShow="true" width="500" height="885" x="700" y="0" refreshonshow="true" source="windowresult.cfm?id={unresissues.helpdesk_id}&act=1&itmemid={unresissues.it_member_id}&classtype={unresissues.class_type}"> <cfajaximport tags="cfform, cftextarea, cfwindow" scriptsrc="/CFIDE/scripts"> </cfwindow> Any assistance would be appreciated. |
February 12, 2012
|
Latest Fusion Authority Articles
|
|||||||||||||||||||||||||||||||||||||||||||||||||