$(document).on("click", '#submitOrder', function () {
var isValid = false;
// Step 1. Disable Submit button
$(this).prop('disabled', true);
$(".bhiErrorInput").css({ 'display': 'none' });
// Step 2. Update text on submit Button
$(this).val("Processing...");
// Step 3. Disable all form fields
$("input[type=text]").prop('disabled', true);
$("select").prop('disabled', true);
// Step 4. Grey out the Screen
$('#thickBoxGreyScreen').css({ opacity: 0.7, 'width': $(document).width(), 'height': $(document).height() });
$('body').css({ 'overflow': 'hidden' });
$('#thickBoxInfoPane').css({ 'display': 'block' });
isValid = validateOrder(); // set of methods that return true or false
if (!isValid) {
$('#thickBoxGreyScreen').css({ 'display' : 'none' })
$('#thickBoxInfoPane').css({ 'display': 'none' })
$(this).val("Submit Order");
$("input[type=text]").prop('disabled', false);
$("select").prop('disabled', false);
$(this).prop('disabled', false);
}
else {
$("input[type=text]").prop('disabled', false);
$("select").prop('disabled', false);
}
event.returnValue = isValid;
return isValid;
}); // end of $(document).on("click", '#submitOrder', function () {
@using (Html.BeginForm("PartnerCartSubmit", "Partner", FormMethod.Post, new { id = "PartnerCartForm" }))
{
@Html.AntiForgeryToken()
if (!String.IsNullOrEmpty(ViewBag.ErrorMessage))
{
<div class="bhiErrorBar">
@Html.Raw(ViewBag.ErrorMessage)
</div>
}
<h1 class="standardText">Addresses</h1>
<div id="bhiAddressDiv">
<div class="bhiAddressDetail">
...
... // HTML of the form removed for simplification.
...
</div>
<input type="submit" value="Submit Order" id="submitOrder" />
<div class="clear"></div>
<div id="thickBoxInfoPane">
<p>Your payment is being processed...</p>
</div>
<div id="thickBoxGreyScreen"></div>
}
Experts Exchange always has the answer, or at the least points me in the correct direction! It is like having another employee that is extremely experienced.
When asked, what has been your best career decision?
Deciding to stick with EE.
Being involved with EE helped me to grow personally and professionally.
Connect with Certified Experts to gain insight and support on specific technology challenges including:
We've partnered with two important charities to provide clean water and computer science education to those who need it most. READ MORE