fix: get content value for specific fieldtypes
This commit is contained in:
parent
6c79a19b29
commit
71272f8f9e
@ -34,7 +34,7 @@ function getFilterMethod(rows, filter) {
|
|||||||
const getFormattedValue = cell => {
|
const getFormattedValue = cell => {
|
||||||
let formatter = CellManager.getCustomCellFormatter(cell);
|
let formatter = CellManager.getCustomCellFormatter(cell);
|
||||||
if (formatter && cell.content) {
|
if (formatter && cell.content) {
|
||||||
cell.html = formatter(cell.content, rows[cell.rowIndex], cell.column, rows[cell.rowIndex]);
|
cell.html = formatter(cell.content, rows[cell.rowIndex], cell.column, rows[cell.rowIndex], true);
|
||||||
return stripHTML(cell.html);
|
return stripHTML(cell.html);
|
||||||
}
|
}
|
||||||
return cell.content || '';
|
return cell.content || '';
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user