我试图了解如何将下拉选择的值提交回 MVC 控制器。我在下面有一个 ShielUI DIV,后跟原始 MVC Using 语句。如何将提交语句更改为 $("#mainForm").submit()); 或任何其他方法?
感谢您的帮助。
<div>
<div class="outerDiv">
<div class="innerDiv">
<label for="comboBoxTech">Select from list</label>
<br />
@(Html.ShieldComboBox()
.Width(200)
.Name("comboBoxTech")
.AutoComplete(ab => ab.Enabled(true))
.DataSource(dsb => dsb.Data(dropdown.ToArray())))
<br />
<br />
@(Html.ShieldButton()
.Name("submit")
.Html("Submit")
.Events(e => e.Click(@<text>
function() {
$("#mainForm").submit());
}
</text>)))
</div>
<div class="imageDiv"></div>
</div>
</div>
@using (Html.BeginForm("ValidateJN", "Home", FormMethod.Get))
{
<p>
@Html.DropDownList("JobsList", string.Empty) and <input type="submit" value="Submit">
</p>
}