mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
83e90aaafe
This class extends the DataGridPresenter with the behaviour and looks of a paginated Datagrid.
25 lines
652 B
Scheme
25 lines
652 B
Scheme
<% require css(sapphire/thirdparty/jquery-ui-themes/smoothness/jquery-ui.css) %>
|
|
<% require css(sapphire/css/GridField.css) %>
|
|
|
|
<div class="ss-gridfield ui-state-default" id="$Name">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<% control Headings %>
|
|
<th class="<% if FirstLast %>ss-gridfield-{$FirstLast} <% if IsSortable %> ss-gridfield-sortable<% end_if %> <% if IsSorted %>ss-gridfield-sorted ss-gridfield-{$SortedDirection}">
|
|
$Title <span class="ui-icon"></span></th>
|
|
<% end_control %>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% control Items %>
|
|
<% include GridField_Item %>
|
|
<% end_control %>
|
|
</tbody>
|
|
|
|
<tfoot>
|
|
|
|
</tfoot>
|
|
</table>
|
|
</div> |