[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[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!

8.0

Javascript - submiting a form problem

Asked by MaxwellTurner in JavaScript

I have a page with a form and a sumit button.  Also, within this form I have a link that calls a javascript function, submitform():

function submitform(){
var multiform = window.document.frmSearch
multiform.setAttribute("method", "post");
multiform.setAttribute("action", "XCustProfileMulti.cfm");
multiform.setAttribute("target", "multicust");
window.open('XCustProfileMulti.cfm', 'multicust', 'scrollbars=no,menubar=no,height=100,width=350,resizable=no,toolbar=no,status=no');
multiform.submit();

The function above opens a new window and on that new page I have another function, printit(), that opens a print dialog box so the user can print out the page which is created and based on the information sent from the form:

function printit(){  
if (window.print) {
    window.print() ;  
} else {
    var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
    WebBrowser1.ExecWB(6, 1);//Use a 1 vs. a 2 for a prompting dialog box    WebBrowser1.outerHTML = "";  
}window.close();
}

My problem is this:  If I simply click the submit button on the form, it submits just as expected, and if I click the link that calls the submitform() function, that also works as expected . . . but once I have clicked the link that calls the submitform() function, then try to submit the form by pressing the submit button, it still calls the submitform() function, unless I physically refresh the page.  

I tried using "javascript:window.opener.location.reload()" on the new window that the submitform() function opens, but I get a prompt box asking if I want to re-sumbit the information, which isn't an acceptable solution.

My submit button: [input type="submit" value="SEARCH"]
My link that calls the submitform() function: <a href="##" onClick="submitform()">Click here to print sheets</a>

I sometimes tend to use javascript that is abit over my head and am kinda lost as to how to solve this.  

Any ideas?  I can provide more info if this isn't clear.

Max

[+][-]01/20/09 06:07 PM, ID: 23426299Accepted Solution

View this solution now by starting your 30-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

Zone: JavaScript
Sign Up Now!
Solution Provided By: hankknight
Participating Experts: 2
Solution Grade: A
 
[+][-]01/20/09 04:59 PM, ID: 23425957Expert Comment

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 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/21/09 09:29 AM, ID: 23431810Author Comment

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 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]01/22/09 10:15 AM, ID: 23441990Author Comment

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 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091118-EE-VQP-93 - Hierarchy / EE_QW_3_20080625