Hi! I have a problem :(
I have the following controller
public function adultos()
    {
	
		$crud = new grocery_CRUD();
		
		$crud->set_language('spanish'); 
        $crud->set_table('adultos');
		$crud->set_subject('Adultos');
		
		$crud->fields('foto_acudiente','nombre_acudiente', 'primer_apellido', 'segundo_apellido','ID_tipo_documento','numero_documento','telefono_1','telefono_2','telefono_3','direccion_1','correo_electronico','profesion','empresa','cargo','alumnos','ID_parentesco');
		$crud->columns('foto_acudiente','nombre_acudiente', 'primer_apellido', 'segundo_apellido','telefono_1','telefono_2','telefono_3','direccion_1','correo_electronico','profesion','empresa','cargo','alumnos');
		$crud->set_relation('ID_parentesco','parentescos','{parentesco}');
		$crud->set_relation('ID_tipo_documento','tipo_documento','{tipo_documento}');
		$crud->set_relation_n_n('alumnos', 'alumnos_acudientes', 'alumnos', 'ID_acudiente', 'ID_alumno', '{nombre_alumno} {primer_apellido} {segundo_apellido}','priority');
		
		$crud->set_field_upload('foto_acudiente','assets/uploads/files');
		
		$crud->display_as('telefono_1','Teléfono Celular');
		$crud->display_as('telefono_2','Teléfono Casa');
		$crud->display_as('telefono_3','Teléfono Oficina');
		$crud->display_as('profesion','Profesión');
		$crud->display_as('direccion_1','Dirección');
		$crud->display_as('ID_parentesco','Parentesco');
		$crud->display_as('ID_tipo_documento','Tipo documento');
		
		$crud->required_fields('nombre_acudiente','ID_parentesco');	
		$crud->form_validation()->set_message('required','El campo %s es obligatorio');
		
		$ID = isset($_SESSION['ID_perfil']) ? $_SESSION['ID_perfil'] : NULL; 
		if ($ID == 3) {
			$crud->unset_add();
			$crud->unset_delete();
			$crud->unset_edit();
		}
		$crud->unset_columns('ID_parentesco','direccion_1','numero_documento');  
		
		$output = $crud->render();
         $this->_vista($output);   
		
			
	}
	
and when i see the view...

The Search don´t work!!! It happens with all the CRUD's with set_relation. With CRUD's without this instruction is working perfectly
I´m working with Codeingniter 2.2 -GroceryCrud 1.5.0, - PHP/5.6.3 - MySQL 5.6.21
Please, help me :'(
