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

  • SEARCH
  • Home
  • 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 8307753
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T18:36:08+00:00 2026-06-08T18:36:08+00:00

I have a jQuery dialog that holds multiple tabs, each tab contains a form,

  • 0

I have a jQuery dialog that holds multiple tabs, each tab contains a form, and the jQuery dialog contains a DropDownList with a “global” value that will be shared across all the tabs/forms.

The key is “Site”, which is set either by a hidden field or by a drop down list depending on the result from the controller.

This is probably a very trivial task but I can’t figure out how to do it (Still new to MVC3, JavaScript and web programming in general). I could grab the value in JavaScript by doing var value = $('#Site').val(); but I don’t know how to send it to the controller since I can’t save JS variables in C# variables but only vice versa. I use this command to submit the form: $('#' + tabid).submit();

Code:

<div id='jquery-dialog' title="Create new">

  @if (ViewBag.SiteList == null)
  {
    @Html.Hidden("Site", Request.Params["ForSite"])
  }
  else
  {
    @Html.DropDownList("Site", (SelectList)ViewBag.SiteList)
  }

  <div id="tabs">
    <ul>
      <li><a href="#tab0">Tab 0</a></li>
      <li><a href="#tab1">Tab 1</a></li>
    </ul>

    @using (Ajax.BeginForm("Create", null, new AjaxOptions() { HttpMethod = "POST" }, new { id = "tab0" }))
    {
      <div id="tab0">
        This is Tab 0
      </div>
    }

    @using (Ajax.BeginForm("Create", null, new AjaxOptions() { HttpMethod = "POST" }, new { id = "tab1" }))
    {
      <div id="tab1">
        This is Tab 1
      </div>
    }
  </div>
</div>
  • 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-08T18:36:10+00:00Added an answer on June 8, 2026 at 6:36 pm

    You can do it with javascript.
    First, create a hiddenfield inside your form tags:

    @using (Ajax.BeginForm("Create", null, new AjaxOptions() { HttpMethod = "POST" }, new { id = "tab0" }))
        {
          <div id="tab0">
            <input id="tab0Value" name="tab0Value" type="hidden" value="">
            This is Tab 0
          </div>
        }
    

    Then when your submit button is clicked (before the form is sent) get the value from the dropDownList and set it to the hidden field:

    var value = $('#Site').val();
    $("#tab0Value").val(value);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a small form that contains a jQuery UI dialog to ask for
I have a jquery-ui-dialog that contains a <form> which contains a <input type=file >
I have an MVC view that contains a JQuery UI dialog that can be
I have written a simple jQuery dialog box that will appear in an asp
I have a JQuery UI dialog popup that displays a form. By selecting certain
I have a jQuery UI Dialog Box that contains a jQuery UI Autocomplete input
I have a jQuery dialog that posts a form when the Please Confirm button
I have a jQuery-UI Dialog that contains a select list that can get updated
I have a simple Jquery dialog box, that dialog contains a button which sends
Let's explain the context: I have a person form inside a jquery dialog that

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.