enable/disable pagination in asset manager (#756)
This commit is contained in:
parent
a47c5b406d
commit
94f14353f4
3 changed files with 3 additions and 2 deletions
|
|
@ -104,7 +104,7 @@ sub getManagerPaginator {
|
|||
;
|
||||
|
||||
my $recordOffset = $session->form->get( 'recordOffset' ) || 1;
|
||||
my $rowsPerPage = $session->form->get( 'rowsPerPage' ) || 25;
|
||||
my $rowsPerPage = $session->form->get( 'rowsPerPage' ) || 100;
|
||||
my $currentPage = int ( $recordOffset / $rowsPerPage ) + 1;
|
||||
|
||||
my $p = WebGUI::Paginator->new( $session, '', $rowsPerPage, 'pn', $currentPage );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue