Hi,
I am also experiencing the same issue.
Controller:
public function model_management()
{
$crud = new grocery_CRUD();
$crud->set_table('models');
$crud->set_relation('sex','sex','gender');
$crud->display_as('sex','Gender');
$crud->set_relation('artist_type','artist_type','artist_type');
$crud->display_as('artist_type','Model Type');
$crud->set_relation('age_range','age_range','age_range');
$crud->display_as('age_range','Age Range');
$crud->set_relation('complexion','complexion','complexion');
$crud->display_as('complexion','Complexion');
$crud->set_relation('enthnicity','enthnicity','enthnicity');
$crud->display_as('enthnicity','Enthnicity');
$crud->set_relation('hair_color','hair_color','hair_color');
$crud->display_as('hair_color','Hair Color');
$crud->set_relation('hair_length','hair_length','hair_length');
$crud->display_as('hair_length','Hair Length');
$crud->set_relation('eye_color','eye_color','eye_color');
$crud->display_as('eye_color','Eye Color');
$crud->display_as('file_url','Profile Image');
$crud->set_subject('Models');
$crud->display_as('profile_image','Profile Image');
$crud->set_field_upload('profile_image','assets/uploads/files');
$crud->add_action('Gallery', '', 'images_examples/example3','ui-icon-image');
$output = $crud->render();
$this->_model_output($output);
}
When i click edit, the relation is working as expected but the read view is only showing the ID.
I am also using the latest GC.
Thanks