formats and style
This commit is contained in:
@ -91,7 +91,7 @@ class ListJsonTable extends JasonTable
|
||||
if($this->beforePrintCell) {
|
||||
$cell = $this->getCustomCell($key, $cell);
|
||||
}
|
||||
$this->html .= "<td>" . $cell . "</td>";
|
||||
$this->html .= "<td style='" . $this->getStyleFromCustomColumn($key) . "'>" . $cell . "</td>";
|
||||
}
|
||||
}
|
||||
$this->getCustomColumns($row["id"] ?? null);
|
||||
@ -163,6 +163,8 @@ class ListJsonTable extends JasonTable
|
||||
return $keys;
|
||||
}
|
||||
|
||||
|
||||
|
||||
private function getColumnKeys(): array
|
||||
{
|
||||
$columnKeys = [];
|
||||
|
Reference in New Issue
Block a user