silverstripe-framework/templates/Includes/GridField_Item.ss

12 lines
383 B
Scheme
Raw Normal View History

<tr class="ss-gridfield-{$EvenOdd} $FirstLast">
<% if $GridField.ExtraColumnsCount %>
<% control Fields %>
<td>$Value</td>
<% end_control %>
<td colspan="$GridField.ExtraColumnsCount" class="ss-gridfield-last"></td>
<% else %>
<% control Fields %>
<td <% if FirstLast %>class="ss-gridfield-{$FirstLast}"<% end_if %>>$Value</td>
<% end_control %>
<% end_if %>
</tr>