how do you set relation field and how does it know which table the relation field comes from
$crud = new image_CRUD();
$crud->set_primary_key_field('ImageId');
$crud->set_url_field('ImageUrl');
$crud->set_table('fimages');
$crud->set_title_field('ImageTitle');
$crud->set_relation_field('category_Id');
$crud->set_ordering_field('ImagePriority');
$crud->set_image_path('assets/uploads/files/gallery');
$output = $crud->render();
$v='index';
$this->_module_output($output,$v);
the above code is not working
but if i remove the $crud->set_relation_field('category_Id'); its working please give me a solution i need to arrange images according to categories