diff --git a/js/gamutable.es6.js b/js/gamutable.es6.js index bba2862..e63f90b 100644 --- a/js/gamutable.es6.js +++ b/js/gamutable.es6.js @@ -238,7 +238,7 @@ let monTableau = { if (rsearch) { let colValue = this.filtreColSelected[colName]; if (colValue) { - if (ligne.html[colName] !== colValue) { + if (ligne.search[colName] !== colValue) { rsearch = false; } } @@ -338,7 +338,7 @@ let monTableau = { this.filtreCol.forEach((col) => { let Tval = ['']; this.table.forEach((t) => { - let valCol = t.html[col]; + let valCol = t.search[col]; if (Tval.indexOf(valCol) === -1) { Tval.push(valCol); } diff --git a/js/gamutable.js b/js/gamutable.js index 85e01bc..e5c8039 100644 --- a/js/gamutable.js +++ b/js/gamutable.js @@ -289,7 +289,7 @@ var monTableau = { var colValue = _this2.filtreColSelected[colName]; if (colValue) { - if (ligne.html[colName] !== colValue) { + if (ligne.search[colName] !== colValue) { rsearch = false; } } @@ -402,7 +402,7 @@ var monTableau = { var Tval = ['']; _this3.table.forEach(function (t) { - var valCol = t.html[col]; + var valCol = t.search[col]; if (Tval.indexOf(valCol) === -1) { Tval.push(valCol);