For example, i have this table in my database:
country(country_id,country_short,country_full_name) values (1,'USA','United States of América'),(1,'DE','Dermany')
I would like do:
$crud->set_relation('country_id','country','country_short','country_full_name');
And i would like see the country short in the columns view, but the full name in the add/edit form.
Regards,