Merge pull request #9312 from nishitlangaliya/Issue-9259

Issue 9259
This commit is contained in:
Mike Jolley 2015-10-09 10:45:15 +01:00
commit bf0a92d29f
1 changed files with 14 additions and 0 deletions

View File

@ -221,4 +221,18 @@ jQuery( function ( $ ) {
// Attribute term table
$( 'table.attributes-table tbody tr:nth-child(odd)' ).addClass( 'alternate' );
// Add js validation for product quick edit panel.
$('#woocommerce-fields .regular_price[type=text], #woocommerce-fields .sale_price[type=text] ').keyup(function() {
var value = jQuery( this ).val();
var regex = new RegExp( '[^\-0-9\%\\' + woocommerce_admin.mon_decimal_point + ']+', 'gi' );
var newvalue = value.replace( regex, '' );
if ( value !== newvalue ) {
jQuery( this ).val( newvalue );
jQuery( document.body ).triggerHandler( 'wc_add_error_tip', [ jQuery( this ), 'i18n_mon_decimal_error' ] );
} else {
jQuery( document.body ).triggerHandler( 'wc_remove_error_tip', [ jQuery( this ), 'i18n_mon_decimal_error' ] );
}
})
});