Hi, I have a field populated by ckeditor, now I want to export in excel/csv but showing the html tags (ex: <b>test</b>)
Trying to make a callback int that column, but its seems not affect the export.
if ($state == 'export') { $this->grocery_crud->callback_column('descripcion1',array($this,'muestra_html')); $this->grocery_crud->columns('sku','descripcion1'); } public function muestra_html($value, $row) { return htmlspecialchars($row->descripcion1); }
Any hint how to do this?