2011-09-28 05:06:06 +02:00
|
|
|
<% require css(sapphire/thirdparty/jquery-ui-themes/smoothness/jquery-ui.css) %>
|
|
|
|
<% require css(sapphire/css/DataGrid.css) %>
|
|
|
|
|
|
|
|
<div class="ss-datagrid ui-state-default">
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2011-09-28 06:49:14 +02:00
|
|
|
<% control Headers %>
|
2011-09-29 23:59:52 +02:00
|
|
|
<th class="<% if FirstLast %>ss-datagrid-{$FirstLast}<% end_if %><% if IsSortable %> ss-datagrid-sortable<% end_if %><% if IsSorted %> ss-datagrid-sorted ss-datagrid-{$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 %>
|
|
|
|
<% include DataGrid_Item %>
|
|
|
|
<% end_control %>
|
|
|
|
</tbody>
|
|
|
|
|
|
|
|
<tfoot>
|
|
|
|
|
|
|
|
</tfoot>
|
|
|
|
</table>
|
|
|
|
</div>
|