Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8008175
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T18:03:37+00:00 2026-06-04T18:03:37+00:00

This Run like it is perfectly fine. // Save, set state to finalized and

  • 0

This Run like it is perfectly fine.

// Save, set state to finalized and Print
        $('#btnDialogPrint').click(function () {

            if ($('#chkFinal').is(':checked')) {
                $(function () {
                    $("#PrintDialog").dialog('close');    
                });
            }
            else {
                $('#chkFinal').attr('checked', true); // Set finalized. This checkbox is not visible its like a hidden field
                $('#btnSubmit').click(); // Save
            }

        });

And this also runs fine:

window.location = '../Print/' + $('#SalesContractId').val();

But when i put them together it only run’s the

window.location = ‘../Print/’ + $(‘#SalesContractId’).val();

Complete Code:

// Save, set state to finalized and Print
    $('#btnDialogPrint').click(function () {

        if ($('#chkFinal').is(':checked')) {

            $(function () {
                $("#PrintDialog").dialog('close');
                window.location = '../Print/' + $('#SalesContractId').val();    // Moves to ContractController Print
            });
        }
        else {
            $('#chkFinal').attr('checked', true); // Set finalized. This checkbox is not visible its like a hidden field
            $('#btnSubmit').click(); // Save
             window.location = '../Print/' + $('#SalesContractId').val();    // does not alow above code to execute 
        }

    });
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T18:03:38+00:00Added an answer on June 4, 2026 at 6:03 pm

    Remove the $(function() { ... }); inside the click handler and put it ouside:

    $(function() {
        $('#btnDialogPrint').click(function () {
            if ($('#chkFinal').is(':checked')) {
                $("#PrintDialog").dialog('close');
                window.location.href = '../Print/' + $('#SalesContractId').val();
            } else {
                $('#chkFinal').attr('checked', true);                
                $('#btnSubmit').click();
            }
        });
    });
    

    The $(function() { ... }); means document.ready.

    This being said you seem to be calling some $('#btnSubmit').click();. Note that if this #btnSubmit is actually the submit button of some form (as its id suggests) then when the form is submitted it will automatically redirect the browser to the action attribute of the form. So it is completely meaningless to call window.location.href to redirect in this case. I guess you will have to rethink whatever you are trying to achieve.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Taking the jQuery framework for example, if you run code like this: $(document).ready(function init()
Is there a program which I can run like this: py2py.py < orig.py >
Assuming that I cannot run something like this with Fabric: run(svn update --password 'password'
I run my interface like this, m1 just grabs the elementById and sets the
Usually I run a script like this: ALTER TABLE [TABLE] ALTER COLUMN [Column] NVARCHAR(40);
If I run a command like this, using ruby's pty class, how do I
Each time I run a command like this ssh user@myhost.com I've to type in
I would like to know how to run a file like this: Search-Mailbox -Identity
I'd like to run my tests in separate processes. Because of this, I would
I've run into this issue when trying to fire up a camera intent like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.