DataTable pagination is not by page, but by result number. Fixes bug #11567.
This commit is contained in:
parent
18de531bc1
commit
b1221a8442
2 changed files with 2 additions and 1 deletions
|
|
@ -1888,7 +1888,7 @@ className='WebGUI::Asset::Sku::EMSTicket' and state='published' and revisionDate
|
|||
|
||||
# gotta get to the page we're working with
|
||||
$counter++;
|
||||
next unless ($counter >= ($startIndex * $numberOfResults));
|
||||
next unless ($counter >= $startIndex+1);
|
||||
|
||||
# publish the data for this ticket
|
||||
my $description = $ticket->get('description');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue