In the default (example) DataTables configuration it's not easy to use ő, ű (o", u") characters for data filtering. If I write something like "Gergő", it gives this error: DataTables warning: table id=example - An SQL error occurred: SQLSTATE[HY000]: General error: 1271 Illegal mix of collations for operation 'like'.
I tried to use this: http://datatables.net/plug-ins/filtering/type-based/accent-neutralise – but did not succeed. How do I substitute $('#myInput') in the code?
Finaly I made a workaround in ssp.class.php by:
$str=str_replace(array('ő','Ő','ű','ű'),array('_','_','_','_'),$str);
(before the " LIKE ".$binding).
Is there some nicer solution?