mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
arraglado fallo en buscador cuando se limpia, orden precios y replace de , a .
This commit is contained in:
@ -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]) {
|
||||
|
||||
Reference in New Issue
Block a user