Hello, I read about this problem, someone said that is a bug and we can wait for version 1.4, I have 1.5.0 and I steal having the problem, in the add, edit and list page I can see the value of the dropdown but in the read page I can see it.
This is my controller, thanks in advance.
$this->crud->set_table('test');
$this->crud->set_subject('Test');
$this->crud->columns('id_test', 'show_test');
$this->crud->field_type('show_test', 'dropdown', array('1' => 'SÃ', '0' => 'No'));
$output = $this->crud->render();
$data['contents'] = 'contents';
$data = array_merge($data, (array) $output);
$this->load->view('template', $data);