stwe / DatatablesBundle

This Bundle integrates the jQuery DataTables plugin into your Symfony application.
355 stars 236 forks source link

Search in translate value of VirtualColumn #985

Open sansxd opened 2 years ago

sansxd commented 2 years ago

hi , is posible search with translate value in a virtualcolumn? i try to search but return nothing.

inside getLineFormatter method i have this

match ($rowClass) { 'WORKFLOW' => $rowClass = 'Espacio de Trabajo', 'PERSONAL' => $rowClass = 'Personal', default => $rowClass = 'Sin clasificar' }; $row['sp_classification'] = $rowClass;

and in my buildDatatable i have this

->add('state', VirtualColumn::class, [ 'title' => 'Estado', 'searchable' => true, 'searchable' => true, 'search_column' => 'state' ])

sansxd commented 2 years ago

Captura de pantalla de 2022-04-21 15-26-36

i try search certifica... but show nothing

image