public function renderCell($row)
 {
     echo '|' . str_pad($row[$this->column->getKey()], 20, ' ') . '|';
 }
 public function renderCell($row)
 {
     echo "<td>" . $row[$this->column->getKey()] . "</td>";
 }