Skip to content

Commit

Permalink
table paging improved based on screens
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Apr 11, 2016
1 parent e9b8533 commit af62171
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
Expand Up @@ -17,7 +17,7 @@
<!DOCTYPE html>
<html xmlns:wicket="http://wicket.apache.org">
<wicket:panel>
<ul class="pagination">
<ul class="pagination pagination-sm no-margin pull-right" style="margin-bottom: 0px;">
<li wicket:id="first">
<a wicket:id="firstLink"><wicket:message key="NavigatorPanel.firstLink"/></a>
</li>
Expand Down
Expand Up @@ -29,11 +29,12 @@
<wicket:fragment wicket:id="pagingFooter">
<div class="row">
<div class="col-md-6">
<div class="dataTables_info" wicket:id="count"/>
<!--buttons here [lazyman]-->
</div>
<div wicket:id="footerContainer" class="col-md-6">
<div wicket:id="menu"/>
<div wicket:id="paging" class="dataTables_paginate paging_bootstrap" />
<div class="dataTables_info pull-right" wicket:id="count" style="margin-right: 10px;"/>
</div>
</div>
</wicket:fragment>
Expand Down
Expand Up @@ -202,7 +202,7 @@ public String getObject() {
}
});
count.setOutputMarkupId(true);
add(count);
footerContainer.add(count);

BoxedPagingPanel nb2 = new BoxedPagingPanel(ID_PAGING, dataTable, true) {

Expand Down
Expand Up @@ -17,7 +17,7 @@
<!DOCTYPE html>
<html xmlns:wicket="http://wicket.apache.org">
<wicket:panel>
<div wicket:id="cogButton" class="btn-group pull-right" style="margin-left: 10px; margin-top:2px;">
<div wicket:id="cogButton" class="btn-group btn-group-sm pull-right" style="margin-left: 10px;">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
<i class="fa fa-cog"></i>
Expand Down
Expand Up @@ -273,7 +273,7 @@ ContainerValuePanel.label.attribute=Attribute
ContainerValuePanel.label.value=Value(s)
contentPanel.accounts=Content
contentPanel.entitlements=Entitlements
CountToolbar.label=Displaying {0,number,integer} to {1,number,integer} of {2,number,integer} matching result.
CountToolbar.label={0,number,integer} to {1,number,integer} of {2,number,integer}
CountToolbar.noFound=No matching result found.
DateValidator.message.fromAfterTo=Valid from date must be before valid to date.
DebugButtonPanel.button.delete=Delete
Expand Down
Expand Up @@ -274,7 +274,7 @@ ContainerValuePanel.label.attribute=Attribute
ContainerValuePanel.label.value=Value(s)
contentPanel.accounts=Content
contentPanel.entitlements=Entitlements
CountToolbar.label=Displaying {0,number,integer} to {1,number,integer} of {2,number,integer} matching result.
CountToolbar.label={0,number,integer} to {1,number,integer} of {2,number,integer}
CountToolbar.noFound=No matching result found.
DateValidator.message.fromAfterTo=Valid from date must be before valid to date.
DebugButtonPanel.button.delete=Delete
Expand Down

0 comments on commit af62171

Please sign in to comment.