Advertisement

04.11.2008 at 05:25AM PDT, ID: 23314800
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.5

CFWINDOW - Passing Variables back to parent FROM.

Asked by TIO-Solutions in Cold Fusion Markup Language, Internet Explorer Web Browser, WebApplications

Tags: ,

Dear Experts.

We are creating online systems in CFML. Now, with the new IE7, is it possible to have popup windows in IE7? Reason for asking is that we have popup windows for searching purposes and when fired, it opens in a tab(IE7).

Then we turned our heads to CFWINDOW, but with it comes a problem/limitation. It is, or we are, unable to pass variables back to the parent FORM.

Here is the source file code; as you can see we are using javascript to pass the variables to the parent form and it works fine in IE6 and other browsers. Please Help!

Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
<cftry>
 
 <cfobject name="oQuoteNet" component="#Application.ComponentRoot#.QuoteNet">
<head> 
<SCRIPT ID=clientEventHandlersJS LANGUAGE=javascript>
<!--
  function SendData(){
   var AgentListID = "";
   var AgentNameList = "";
//	 var AgentStatusList = "";
	 
   for(var i=0;i<document.AgentsForm.Agent_ID.options.length;i++){
	 
    if (document.AgentsForm.Agent_ID[i].selected == true){
		
     AgentListID = document.AgentsForm.Agent_ID[i].value;
     AgentNameList = document.AgentsForm.Agent_ID.options[i].text;
		// AgentStatusList = Status[i] + '\n' + AgentStatusList;
		 
    }
   }
	 
   window.opener.document.getElementById('AgentID').value =  AgentListID;
   window.opener.document.getElementById('AgentName').value = AgentNameList;
	// window.opener.document.getElementById('AgentStatus') = AgentStatusList;
   
   window.close();
	 
  }
//-->
</SCRIPT>
 
 
<link href="includes/styles.css" rel="stylesheet" type="text/css" />
</HEAD>
<BODY>
 
<fieldset align="center" class="fieldset">
  <legend>Agent Selection</legend>
  <cfform name="AgentsForm" action="" method="post">
   <table cellpadding="3" cellspacing="0" border="0" align="center">
	 <tr>
	 	<td colspan="2"><b>Please select Agent blow</b></td>
	 </tr>
	 <tr>
	 	<td>Search By...</td>
	 </tr>
	 <tr>
    <td>Agents:</td>
    <td> 
		<cfset Agent = oQuoteNet.ViewAgents()>
     	<cfselect name="Agent_ID" class="select">
				<cfloop from="1" to="#ArrayLen(Agent)#" index="j">
					<cfoutput><option value="#Agent[j][1]#">#Agent[j][2]#</option></cfoutput>
				</cfloop>
			</cfselect>
    </td>
   </tr>
	 <tr>
	 	 <td>
		 </td>
	 </tr>
   <tr>
    <td></td>
    <td><cfinput type="button" name="Submit" onclick="return SendData();" value="Select Agent"></td>
   </tr>
   </table>
  </cfform>
 </fieldset>
 </BODY>
 
 <cfcatch type="any">
  <fieldset align="center">
   <legend class="message">Error Message</legend>
   <br /><br />
   <cfoutput>#cfcatch.Message#</cfoutput>
   <br /><br />
   &lsaquo;&lsaquo; <a href="javascript:history.back(-1);">Back</a>
   <br /><br />
  </fieldset>
 </cfcatch>
</cftry>
[+][-]04.11.2008 at 05:28AM PDT, ID: 21333508

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 14-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]04.11.2008 at 07:12AM PDT, ID: 21334430

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.11.2008 at 07:14AM PDT, ID: 21334446

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.11.2008 at 07:17AM PDT, ID: 21334473

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.13.2008 at 11:36PM PDT, ID: 21347932

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 14-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]04.14.2008 at 04:30AM PDT, ID: 21349097

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.14.2008 at 04:40AM PDT, ID: 21349137

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.14.2008 at 04:43AM PDT, ID: 21349152

View this solution now by starting your 14-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Cold Fusion Markup Language, Internet Explorer Web Browser, WebApplications
Tags: Coldfusion, IE7
Sign Up Now!
Solution Provided By: srikanthmadishetti
Participating Experts: 1
Solution Grade: B
 
 
 
Loading Advertisement...
20081112-EE-VQP-43 / EE_QW_2_20070628