add custom columns filter

This commit is contained in:
2024-08-22 13:08:25 +03:00
parent af1b996766
commit 77a306a0f6
3 changed files with 14 additions and 3 deletions

View File

@ -90,4 +90,14 @@ class JasonTable
return $styleStr;
}
protected function getFilterFromCustomColumn(string $column)
{
if (is_array($this->beforePrintCell[$column])) {
if (isset($this->beforePrintCell[$column]['filter'])) {
return $this->beforePrintCell[$column]['filter'];
}
}
return "text";
}
}