Validate quantity inputs
parent
3bda249c68
commit
fb6fb6e3e0
|
@ -305,6 +305,14 @@ $(document).ready(function (){
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$('#product_quantity').on('keyup', function(e){
|
||||||
|
checkMaxQuantity(e, $('#product_quantity'));
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.cart-product-quantity').on('keyup', function(e){
|
||||||
|
checkMaxQuantity(e, $('.cart-product-quantity'));
|
||||||
|
});
|
||||||
|
|
||||||
$('.cart-product-quantity').on('focusout', function(e){
|
$('.cart-product-quantity').on('focusout', function(e){
|
||||||
cartUpdate($(e.target));
|
cartUpdate($(e.target));
|
||||||
});
|
});
|
||||||
|
@ -391,6 +399,20 @@ $(document).ready(function (){
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function checkMaxQuantity(e, element){
|
||||||
|
if($('#maxQuantity').length){
|
||||||
|
if(e.keyCode === 46 || e.keyCode === 8){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if(parseInt($(e.target).val()) > parseInt($('#maxQuantity').val())){
|
||||||
|
const qty = element.val();
|
||||||
|
e.preventDefault();
|
||||||
|
element.val(qty.slice(0, -1));
|
||||||
|
showNotification(`Exceeds maximum quantity: ${$('#maxQuantity').val()}`, 'warning', false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function deleteFromCart(element){
|
function deleteFromCart(element){
|
||||||
$.ajax({
|
$.ajax({
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -166,6 +166,7 @@
|
||||||
<input type="hidden" id="cartCheckout" value="{{checkout}}">
|
<input type="hidden" id="cartCheckout" value="{{checkout}}">
|
||||||
<input type="hidden" id="cartTheme" value="{{@root.config.theme}}">
|
<input type="hidden" id="cartTheme" value="{{@root.config.theme}}">
|
||||||
<input type="hidden" id="currencySymbol" value="{{@root.config.currencySymbol}}">
|
<input type="hidden" id="currencySymbol" value="{{@root.config.currencySymbol}}">
|
||||||
|
{{#if @root.config.maxQuantity}} <input type="hidden" id="maxQuantity" value="{{@root.config.maxQuantity}}">{{/if}}
|
||||||
<div id="notify_message"></div>
|
<div id="notify_message"></div>
|
||||||
{{#if showFooter}}
|
{{#if showFooter}}
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
|
|
Loading…
Reference in New Issue