2011-09-28 05:06:06 +02:00
|
|
|
<% require css(sapphire/thirdparty/jquery-ui-themes/smoothness/jquery-ui.css) %>
|
2011-09-30 00:59:44 +02:00
|
|
|
<% require css(sapphire/css/GridField.css) %>
|
2011-09-28 05:06:06 +02:00
|
|
|
|
2011-10-27 05:11:26 +02:00
|
|
|
<div class="ss-gridfield ui-state-default" id="$Name">
|
2011-09-28 05:06:06 +02:00
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2011-09-28 06:49:14 +02:00
|
|
|
<% control Headers %>
|
2011-09-30 00:59:44 +02:00
|
|
|
<th class="<% if FirstLast %>ss-gridfield-{$FirstLast}<% end_if %><% if IsSortable %> ss-gridfield-sortable<% end_if %><% if IsSorted %> ss-gridfield-sorted ss-gridfield-{$SortedDirection}<% end_if %>">
|
2011-09-28 05:06:06 +02:00
|
|
|
$Title <span class="ui-icon"></span></th>
|
|
|
|
<% end_control %>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
<% control Items %>
|
2011-09-30 00:59:44 +02:00
|
|
|
<% include GridField_Item %>
|
2011-09-28 05:06:06 +02:00
|
|
|
<% end_control %>
|
|
|
|
</tbody>
|
|
|
|
|
|
|
|
<tfoot>
|
|
|
|
</tfoot>
|
|
|
|
</table>
|
2011-10-27 05:11:26 +02:00
|
|
|
|
|
|
|
<% control Footers %>
|
|
|
|
$Render
|
|
|
|
<% end_control %>
|
|
|
|
|
|
|
|
</div>
|