Leider habe ich wieder nur Zeit verschwendet beim Googeln nach folgender Frage:
id werden automatisch nicht angezeigt.
Da ich aber nach ids filtern möchte, will ich diese auch anzeigen können. Siehe Codeschnipsel:
<thead>
<tr>
<th><?php echo $paginator->sort('Sum', 'sum', $filter_options);?></th>
<th><?php echo $paginator->sort('Customer', 'customer_id', $filter_options);?></th>
<th><?php echo $paginator->sort('ReNummer', 'id', $filter_options);?></th>
<th class="actions">Actions</th>
</tr>
<tr>
<th><?php echo $form->input('sum'); ?></th>
<th><?php echo $form->input('customer_id'); ?></th>
<th><?php echo $form->input('id'); ?></th>
<th>
<button type="submit" name="fee[filter]" value="filter">Filter</button>
<button type="submit" name="fee[reset]" value="reset">Reset</button>
</th>
</tr>
</thead>