sorry to bother but i have a new weird behavior for callback_column.
on my project controller:
public function list_items() {
$crud_list = new grocery_CRUD();
$crud_list->set_table('tbl_project');
$crud_list->set_subject('Project');
$crud_list->callback_column('project_code',array($this,'callback_webpage_url'));
$output = $crud_list->render();
$this->result_output($output);
}
and the definition of the callback_webpage_url
public function callback_webpage_url($value, $row){
return '<a href="'.site_url("projects/detail_item/".$row->project_code).'">'.$value.'</a>';
}
my problem is : the projects table "project_code" show a correct link on it but the "edit" link and on the delete link also , in the action section of each row
<a title="Edit Project" href="http://localhost........./projects/list_items/edit/<a href="http://localhost:8181/backlog/index.php/projects/detail_item/p0">p0</a>"><span class="edit-icon"></span></a>
it seems the url passing into the link from my project_code (which is correct) is also passed to the edit link ...
how to avoid this pb please ?
thanks.