I have a doubt, I need to sort the fields by the field name alphabetically, but it turns out that the data in the db ones are in uppercase and others in lowercase, so I do not order the correct form, when I show the data in a Table with grocery crud, you'll have some idea of what I can do.
$crud->order_by('nombre_completo','asc');
This only works for me when the data is stored in the same way, but when some are saved in Hello, hello it does not work for me
I already solved the problem in half, since the data in the db are saved with spaces and that generates problems, I require that before sending the data, these are saved without spaces, but I do not know how to implement it with a Function on a field or how to do it.