currently I am using Xataface # 1.3rc6
I'd like to style the main Table with the following function in the delegate class of that table:
- Code: Select all
function renderRowHeader( $tablename ){
$table =& Dataface_Table::loadTable($tablename);
$fields =& $table->fields();
return '<th class="links" >'.$fields['id']['widget']['label'].'</th>'.
'<th>'.$fields['datum']['widget']['label'].'</th>'.
'<th>'.$fields['kundenname']['widget']['label'].'</th>'.
'<th class="rechts">'.$fields['owner']['widget']['label'].'</th>';
}
This works fine... but
now only the Table header shows ... the rest of the table is gone

what am I doing wrong?
cheers
Martin