In the documentation I found the info for customizing the way the list is rendered.
I have a table called "customers"
- Code: Select all
- class tables_customers {
 function renderRow( &$record ){
 return '<td>'.$record->display('name').'</td>'.
 '<td>'.$record->display('lastname').'</td>'.
 '<td>'.$record->display('online').'</td>';
 }
Result: It shows me the data the way I want it.
How can I change the output name to have a link to the EDIT-URL of the record.
I tested:
'<td><a href="???">'.$record->display('name').'</a></td>'.
chichi
 
		