arraglado fallo en buscador cuando se limpia, orden precios y replace de , a .

This commit is contained in:
2024-08-27 19:04:18 +02:00
parent 49314e166d
commit e2289030db
5 changed files with 49 additions and 24 deletions

View File

@ -208,8 +208,8 @@
$('input', this).on('change clear', function () {
var minInputValue = parseFloat($(`#min_${title}`).val()) || "";
var maxInputValue = parseFloat($(`#max_${title}`).val()) || "";
var minInputValue = parseFloat($(`#min_${title}`).val().replace(',','.')) || "";
var maxInputValue = parseFloat($(`#max_${title}`).val().replace(',','.')) || "";
if (theTable.column(i).search() !== [minInputValue,maxInputValue]) {