mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
e893fc4c51
Enhancement add accessibility info to page number Enhancement new font icons added, improve trash icon and increase icon size of close Enhancement improve title of gridfield search trigger Enhancement add title to button to open gridfield search and improve gridfield search styles API Shortcode fails if no parent API JQuery-UI classes removed Enhancement centre actions tabs within dropup in more-actions Enhancement fix IE input height issue and fix for safari of icons in buttons with hidden text (e.g. pagination) Enhancement only show external link on hover
24 lines
835 B
Scheme
24 lines
835 B
Scheme
<tr>
|
|
<td class="grid-field__paginator bottom-all" colspan="$Colspan">
|
|
<% if $OnlyOnePage %>
|
|
<% else %>
|
|
<div class="grid-field__paginator__controls datagrid-pagination">
|
|
$FirstPage $PreviousPage
|
|
<span class="pagination-page-number">
|
|
<%t Pagination.Page 'Page' %>
|
|
<input class="text" title="Current page" value="$CurrentPageNum" data-skip-autofocus="true" />
|
|
<%t TableListField_PageControls_ss.OF 'of' is 'Example: View 1 of 2' %>
|
|
$NumPages
|
|
</span>
|
|
$NextPage $LastPage
|
|
</div>
|
|
<% end_if %>
|
|
<span class="grid-field__paginator_numbers pagination-records-number">
|
|
<%t Pagination.View 'View' is 'Verb. Example: View 1 of 2' %>
|
|
{$FirstShownRecord}–{$LastShownRecord}
|
|
<%t TableListField_PageControls_ss.OF 'of' is 'Example: View 1 of 2' %>
|
|
$NumRecords
|
|
</span>
|
|
</td>
|
|
</tr>
|