Tagged Questions
The paginator tag has no wiki summary.
9
votes
6answers
3k views
Why doesnt paginator remember my custom parameters when I go to page 2?
When using the paginator helper in cakephp views, it doesnt remember parts of the url that are custom for my useage.
For example:
http://example.org/users/index/moderators/page:2/sort:name/dir:asc
...
4
votes
2answers
145 views
Is it possible to page and sort two different models in the same view in CakePHP?
I want to do something very straight forward and simple. I want to have two different sets of paginated data on the same page. The two different sets depend on different models. For discussion's ...
3
votes
1answer
177 views
Zend_Paginator adapter for SolrQuery
I am currently working in a Zend_Paginator's adapter for the PECL SolrQuery. I can't figure a way to avoid the duplicate query. Does anyone have a better implementation?
<?php
require_once ...
2
votes
2answers
105 views
How to implement a paginator that doesn't call count(*)
I am working on a django website that has a MySQL innodb backend. We have hundreds of thousands of records in several of our tables and this is causing some site stability/performance issues in the ...
2
votes
2answers
399 views
doctrine 2 and zend paginator
i want to use doctrine with zend_paginator
here some example query :
$allArticleObj =
$this->_em->getRepository('Articles');
$qb = $this->_em->createQueryBuilder();
...
2
votes
1answer
263 views
Paginator zend framework warning
Warning: No view partial provided and
no default set in
/Applications/MAMP/htdocs/getv/library/Zend/Paginator.php
on line 465
This is the warning message that I get when loading the ...
2
votes
2answers
276 views
Algorithm to separate pagination display by …?
Have an $A is the data for pagination:
$A = array(
0=>array(
0=>1,
1=>2
),
1=>array(
0=>3,
1=>5,
2=>2
...
2
votes
1answer
335 views
Redirecting paginator->sort to the first page in Cakephp
How do I do a paginator sort and also specify it to go to the first page:
echo $paginator->sort('Make', 'Car.make');
If you're on page 6 and want to sort the list by car make. It sorts the list but ...
2
votes
1answer
1k views
Saving and printing XPSDocument through Paginator (seems to)causes a rasterization of the content
I use the WPF Printing Path to handle big large diagrams created in our application. The whole diagram consists of visuals.
A so called "DesignerPaginator" paginates the diagram (it is quite simple).
...
2
votes
1answer
1k views
How to paginate an ObservableCollection?
I have a ListBox with way too many items in it and the UI is getting slower and slower (virtualization is on, etc). So I was thinking about displaying only the first 20 items and allow to user to ...
1
vote
0answers
100 views
Faster Django Pagination App
We use django-paging, which is a bit old. One of the big issues is that the app performs a count on the queryset returned by each view, which is slow and doesn't provide us any value in our case.
I ...
1
vote
0answers
48 views
FlowDocument - How to Implement KeepWithNext
I have a FlowDocument with multiple BlockUIContainers back to back with one another. These UIContainers each represent a different type of content coming from a different source, but are all related ...
1
vote
1answer
280 views
Filter results for Django paginator in template
I'm filtering out results from my page_obj in a generic view to only show entries published in the same language as the languge currently set by django-cms ...
1
vote
2answers
673 views
How do I set YUI2 paginator to select a page other than the first page?
I have a YUI DataTable (YUI 2.8.0r4) with AJAX pagination. Each row in the table links to a details/editing page and I want to link from that details page back to the list page that includes the ...
0
votes
1answer
35 views
Radio buttons with Paginator (CakePHP)
I want to have a paginated list in a table and a radio button for each record. I looked everywhere and I couldn't find anything. I know how to do this with checkbox (simply adding ...
0
votes
0answers
22 views
Set Document of Preview Window
In my WPF application, I want to show a Preview window. I add a
<DocumentViewer Name="_viewer" />
in my PreviewWindow.
I have a paginator (sub class of DocumentPaginator). I can't get how ...
0
votes
2answers
53 views
How to implement previous- and next-links in the object-detail-view of a search-result?
I am almost done with my first production-ready django-project. I got one big problem left:
I got an article-search-view that renders a list of found articles. Pagination is working just fine for the ...
0
votes
0answers
46 views
How can I set the paginator page from within the controller in cakePHP
I have a standard cakePHP backend but I'm not using the cake pagination helper. My existing frontend provides pagination params in the form "startIndex, numberOfResults" vs. "page". It would be ...
0
votes
0answers
132 views
How do I make the CakePHP paginator sort work with HABTM, joins and conditions?
I've spent quite a while today making a complex pagination query. Here are the basics
Models are as follows:
Reservation HABTM InventoryItem
Reservation belongsTo Group
ClientDetails belongsTo ...
0
votes
1answer
141 views
Why does the primefaces' paginator doesn't work after the application system keep online for about 2 days?
The system's runtime environment is Mojarra jsf 2.0+primefaces 3.0+websphere7.0(tomcat6.0 is also has the problem).
The 2 days is not a exactly time. It's really means that the system keep running for ...
0
votes
1answer
55 views
Get Paginator Previous to add another parameter
How do I get this:
echo '<td>'.$paginator->prev('Previous', array($query_encode)).'</td>';
to have another parameter in the url?
0
votes
2answers
56 views
Is there any way to find user favorite posts in one query?
I do this to paginate all posts wich a user has added to his favorites:
$favs = $this->Favorite->find('all', array(
'fields' => array(
'Favorite.post_id'
),
'conditions' ...
0
votes
0answers
366 views
primefaces Datatable - jump to specifed page feature in paginator
I'm using datatable with lazy loading. suppose that, I have 10 page in my datatable and i 'm
in 1st page, I have a input field, if i enter 5 in it. Datatable should show me 5th page. ie.
I want to ...
0
votes
2answers
654 views
CakePHP Pagination sort() on Related Models
I have two models: Plans and PlanDetails.
Relationship is: PlanDetails hasMany Plans. Plans belongTo PlanDetails.
In the PlanDetails view.ctp, I am pulling in related Plans.
I am trying to sort the ...
0
votes
1answer
196 views
Use $this->Paginator->sort sort by a field not in the related model
I want to use $this->Paginator->sort to generate a link, but sorted by a field not in the current table, which related to this table. So can I do that? and how to do that?
Thanks so much!
0
votes
2answers
135 views
How to optimize for Django's paginator module
I have a question about how Django's paginator module works and how to optimize it. I have a list of around 300 items from information that I get from different APIs on the internet. I am using ...
0
votes
0answers
188 views
CakePHP Searchable Behaviour with Paginator
I'm building an app in CakePHP 1.3. I'm attempting to search on a table called 'People'. I've added the Searchable behvior to that model. I'm also using Paginator to paginate results. With this setup, ...
0
votes
2answers
407 views
zend framework components DB can't find class Zend_Paginator_Adapter_DbTableSelect
I'm using some Zend libraries outside of the Zend Framework in a small project.
I'm using Zend_Db and Zend_Paginator but when I'm trying to set up the pagination using ...
0
votes
1answer
297 views
paginator django tutorial?
I am trying to implement a simple paginator example.
Is there any tutorial, example that runs through one SIMPLE example from start to finish.
urls.py
views.py
settings.py
models.py
I am aware of ...
0
votes
1answer
43 views
How to show paginated results for the category items of the selected category in CakePHP?
Currently i'm having a problem with the pagination of some results. The problem is the following:
I have a website with 3 tables: categories, categories_companies and companies. In a many-to-many ...
0
votes
1answer
169 views
Extend django.core.paginator Paginator to work with Google App Engine
How would one extend the Paginator class in django.core.paginator to work with Google App Engine queries?
0
votes
1answer
529 views
How to generate page numbers using javascript?
How do I generate page numbers for a multi page data set using javascript?
Consider there are 55 pages. I want to generate page numbers like this
1 2 3 4 5 ..... 55 next
Which is rather similar to ...
0
votes
1answer
952 views
Cakephp pagination problem with next/previous
Let's say I have this page with pagination:
localhost/fr/users/index/page:1
I see the correct results for page 1 based on how I have defined the paginate var in my controller. But when I click the ...
0
votes
1answer
38 views
Paginator doens't store search parameters
i'm using jpinedo.webcindario.com/scripts/paginator at my search script, but when i click on the page 2 the parameters from the first search are lost (i get my own message for "you need to type at ...
0
votes
1answer
303 views
Pagination problem
I'm using this code for my pagination, and I'd like the user's choice to be persistent throughout the site (this has been solved so far)...the only problem now is that the session variable now is ...
0
votes
0answers
35 views
SO-like paginator,how much more mathematical flavour can you add to it?
function paginator($totalPages,$currentPage)
{
if($currentPage > $totalPages)
return false;
$aheadmin = max(1,$currentPage - ($totalPages - $currentPage > 3 ? 2 : (5 - ($totalPages ...
0
votes
1answer
1k views
Issues with XPSDocumentWriter and PrintDialog.PrintDocument
Our company is developing an application (WPF, targeted to .NET 3.5) with the WPF Diagramming Components from MindFusion.Apparently, printing and saving XPS Documents results in various errors on ...