Hi, I have some fields that I save in database after I apply utf8_encode on them.
When I display them on grocey crud list with bootstrap theme, I apply utf8_decode, only the pagination stops working properly : ajax_list return nothing and the previous page remains displayed
This is the line of code I modified in list_tbody.php (bootstrap theme):
echo $row->{$column->field_name} != '' ? utf8_decode($row->{$column->field_name}) : ' ' ;
If I remove utf8_decode, pagination works fine, but I need to do the decoding somehow ...