This commit is contained in:
Kavalar 2024-07-15 15:49:12 +03:00
parent 42ab26a3db
commit 338555d62c

View File

@ -69,7 +69,7 @@ class ListJsonTable
foreach ($this->data['data'] as $col) { foreach ($this->data['data'] as $col) {
$this->html .= "<tr>"; $this->html .= "<tr>";
$this->count += 1; $this->count += 1;
$this->html .= '<td><a href=' . $this->baseUrl . "/form-item/" . $col["id"] . '>' . $this->count . '</a></td>'; $this->html .= '<td><a href=' . $this->baseUrl . "/" . $col["id"] . '>' . $this->count . '</a></td>';
foreach ($col as $key => $row) { foreach ($col as $key => $row) {
if ($this->issetColumn($key) and $this->is_fillable($key)) { if ($this->issetColumn($key) and $this->is_fillable($key)) {
if ($this->beforePrintCell) { if ($this->beforePrintCell) {