Я делаю проект asp.net mvc и хочу отключить все кнопки отправки, пока форма отправляется с кодом ниже jquery:
$(function()
{
$('#theform').submit(function(){
$("input[type='submit']", this)
.val("Please Wait...")
.attr('disabled', 'disabled');
return true;
});
});
Моя форма выглядит следующим образом:
@using (Ajax.BeginForm("RegisterCustomer", "Customer", FormMethod.Post, new AjaxOptions()
{
OnSuccess = "success",
UpdateTargetId = "listUsers"
}))
{
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
<div class="form-group has-feedback">
@Html.EditorFor(model => model.identificationNo, new {htmlAttributes = new {@class = "form-control", placeholder = Html.DisplayNameFor(x => x.identificationNo)}})
@Html.ValidationMessageFor(model => model.identificationNo, "", new {@class = "text-danger"})
</div>
<div class="form-group has-feedback">
@Html.DropDownListFor(model => model.identificationType, new SelectList(itemsOfIdentificationType, "Key", "Value"), "نوع شناسه را انتخاب نمایید", new {style = "width:315px; height: 30px; padding 5px; margin: 5px 0 6px; background: none repeat scroll 0 0 #FFFFFF; vertical-align:middle;"})
@Html.ValidationMessageFor(model => model.identificationType, "", new {@class = "text-danger"})
</div>
<div class="row">
<div class="col-xs-12">
<button class="btn btn-primary btn-block btn-flat" type="submit">Register</button>
</div>
</div>
}
Как я могу присвоить Id:
@using (Ajax.BeginForm("Index", "Customer", FormMethod.Post, new AjaxOptions(){})){ /* ... */}
И еще один вопрос: есть ли лучший способ отключить кнопку отправки во время отправки формы и снова включить кнопку, когда форма отправлена полностью безлюбая проблема ??