Hi, start by apologizing for my bad English.
I have a strange problem (behavior?) with a callback_column in my primary key.
In my example, the DB structure is very simply:
id_key -> Tiny Int, Primary, Auto Increment
column_1 -> Varchar 128
column_2 -> Varchar 128
etc.
I have created a callback_column function for adding a URL link as "/my_url/my_controller/my_func/id_key"
The problem is the "modify / delete / view" action.. this URL result "bound" with the auto generated URL.
Example:
http://127.0.0.1/My_CI_APP/index.php/my_controller/index/edit/<a href='my_other_controller/my_function/123>SOME TEXT FOR LINK</a>
Note:
In my callback function i have a something like:
public function _callback_my_callback($value, $row){ $action="<a href='my_other_controller/my_function/$value'>SOME TEXT FOR LINK</a>"; return $action; }
Luigi
NOTE:
I have purchased a Bootstrap Theme.. great product, but the grouping of action in "more" button is less imediate than a LINK in row.. This is why I would use a callback_column function. ;)