I think, I found a solution and I tried it to something similar. This will work
function requests()
{
$crud = new grocery_CRUD();
$crud->set_table('fq_request');
$crud->set_subject('Request');
$crud->unset_add();
$crud->fields('request_service', 'request_name', 'request_email', 'region_id', 'request_phone', 'request_fax', 'request_for');
$crud->set_relation('region_id','fq_region','region_name');
$crud->unset_texteditor('request_for');
$crud->columns('id', 'request_service', 'request_name', 'request_email', 'request_count');
$crud->order_by('fq_request.id', 'desc');
$output = $crud->render();
$this->_crud_output($output);
}The only problem is that there is a let’s say it BUG to groceryCRUD that it don’t “read” the order by that you tell (fq_request.id). The order by works but there is not working with the symbol “/\” or “\/” . I hope there is no problem with this. The search works fine with this and the id is shown normally