$crud->add_fields('Image');
$ crud-> set_relation_n_n ('Image', 'prods_images', 'images', 'prod_id', 'image_id', 'url');
$ crud-> set_field_upload ('Image', 'images /');
It does not work
⚠ In case you've missed it, we have migrated to our new website, with a brand new forum. For more details about the migration you can read our blog post for website migration. This is an archived forum. ⚠
Posted 09 October 2012 - 13:38 PM
$crud->add_fields('Image');
$ crud-> set_relation_n_n ('Image', 'prods_images', 'images', 'prod_id', 'image_id', 'url');
$ crud-> set_field_upload ('Image', 'images /');
Posted 09 October 2012 - 14:16 PM
$crud->callback_column('Image',array($this,'get_img'));
function get_img($value, $row)
{
return "<img style=' height: 100px; ' src='".base_url()."images/".$value."'/>";
}
Posted 10 October 2012 - 06:26 AM