Hello,
I'm using a EJS grid and i miss something from EJ1.
I would like to use filtering even on my cells that are empty (without using EJ1).
Now, i replaced empty string cells with "-", so my filter show a checkbox with "-" cells. Works fine but if possible i would like to show it without using "-".
But I can't find any solution about empty cells with date type.
My code is:
queryCellInfo(args) {
if (args.column.customAttributes.typeManager == "DATE") {
if (args.cell.textContent == null || args.cell.textContent == "") {
args.cell.textContent = "-";
}
}
......
}
customAttributes.typeManager is an attribute created by ourselves that will be "date" if the cell is date type.
Thanks,
Hafid.