Tagged Questions
The zend-paginator tag has no wiki summary.
10
votes
2answers
194 views
Zend_Paginator Problem…?
I am using Zend_Paginator in my web-page, where I get the same records in each page....
For Eg. I got the same 4 records in different pages...?
$page=$this->_getParam('page',1);
$paginator = ...
6
votes
2answers
692 views
Zend_Paginator; is it optimized?
I am about to use Zend_Paginator class in my project. I found examples of the class on the internet. One of them is
$sql = 'SELECT * FROM table_name ';
$result = $db->fetchAll($sql);
...
6
votes
6answers
2k views
Zend_Paginator blurring MVC lines
I'm working on a Zend Framework (1.7) project with a structure loosely based on the structure of the quickstart application - front controller, action controllers, views & models that use ...
5
votes
2answers
712 views
how to ajaxify zend_pagination results (already working with partialoop) using jquery
in the controller i have :
$paginator = Zend_Paginator::factory($mdlPost->getPosts($this->moduleData->accordion, 'name ASC'));
if(isset($params['cities'])) {
...
4
votes
1answer
266 views
Zend_Form & Pagination
I am putting together a Zend_Form that has numerous SubForms. In fact, it has the potential to have so many subforms, I'd like them to appear on multiple pages. Is it possible to use Zend_Paginator ...
3
votes
1answer
139 views
What is the most idiomatic way to paginate through the results of a search performed using zend_form
I've implemented an action + view that lists all the rows in a database and allows you to paginate through them using zend_paginator. I've also written an action + view that takes a form post (or ...
3
votes
1answer
234 views
Confused with Zend_Paginator
I am really confused with how Zend_Paginator works...
$dbProducts = $this->_table->fetchAll($this->_table->select());
//$dbProducts = new Zend_Paginator(new ...
3
votes
2answers
455 views
Returning a zend paginator object in ajax request, getting wrong url
I'm using Zend Paginator here, in an ajax request I am retrieving objects based upon search results and rendering the HTML and passing it along with a rendered Zend Paginator view.
The problem is ...
3
votes
1answer
176 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 ...
3
votes
2answers
641 views
Zend_Paginator / Doctrine 2
I'm using Doctrine 2 with my Zend Framework application and a typical query result could yield a million (or more) search results.
I want to use Zend_Paginator in line with this result set. However, ...
3
votes
2answers
705 views
How do i get row counts of Zend_Paginator object?
I am using Zend_Pagintor class with Zend_Db_Table_Abstract .
Zend_Pagintor has a count() method but it always returns 1!
How do i get row counts?
2
votes
1answer
58 views
pagination through Zend Paginator giving error
i am using zend paginator for pagination in my app here is the action that is doing so
public function listAction(){
$registry = Zend_Registry::getInstance();
$DB = $registry['DB'];
...
2
votes
1answer
110 views
How do you cache pagination result & doctrine?
I'm using Zend Framework & Zend_Paginator with Doctrine 2 and DoctrineExtensions Paginate Adapter.
I need to cache my result, however, I don't know where should I do this.
It seems logical to me ...
2
votes
2answers
395 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
2answers
522 views
Zend_Paginator links with query params
Could you please tell me how to make link with Zend_Paginator like this:
http://url/controller/action?id=47&page=2.
I want to add to url additional paramter to the query of url like url?id=value, ...
2
votes
5answers
854 views
how to use zend paginate without loading all the results of a database
So the way I see zend paginate work is that you do:
$paginator = Zend_Paginator::factory($results);
$paginator->setItemCountPerPage($itemCount);
$paginator->setPageRange($pageRange);
Where ...
2
votes
2answers
938 views
Zend_Db_Table Relationships and Zend_Paginator
is there a way, hot to apply paginator limit on select, which I send to findDependentRowset function? for example:
$select = $row->select();
$select->order('item_name');
...
1
vote
2answers
37 views
zend paginator make other links and Action Calling concatinating with the URL
I am NEW to ZF .i used zend paginator in my first project .its working fine that is switching b/w pages with right result but the problem is that i have other links too in that view have a look to my ...
1
vote
1answer
63 views
Zend Paginator - How can get the first element in paginator?
I have a zend paginator object, I want to get the first element in this paginator.
I tried $paginator->getItem(0) but it returns the message:Message: Cannot seek to 0 which is below the offset 2. ...
1
vote
1answer
72 views
How do you output the Zend pagination control outside of the view?
I'm creating a wrapper class in the Zend framework to encapsulate some data output and the pagination control.
How do I output this line from the view in the controller:
<?= ...
1
vote
1answer
90 views
Zend_Paginator stopped working
I'm learning Zend Framework. I had Zend_Paginator working with the array adapter, but I'm having trouble using the Zend_Paginator::factory static method. The problem is the pagination control links ...
1
vote
4answers
370 views
How to paginate search results?
I want to paginate search results using Zend_Paginator. So I pass my data to a paginator instance:
$paginator = new Zend_Paginator (
new Zend_Paginator_Adapter_DbSelect ( $data )
);
...
1
vote
1answer
140 views
How to get zend_lucene and zend_paginator to work
I've been using Zend Framework for a few months now. So, my knowledge is pretty good but I'm not quite an expert yet. I am trying to use zend_lucene with zend_paginator and so far not successful. I am ...
1
vote
1answer
167 views
Zend_Paginator Without DbSelect/DbTableSelect adapter
Is there a way to use Zend_Paginator Without DbSelect/DbTableSelect adapter without having to fetch whole data set?
I have 2000 objects I want to paginate with Zend_Paginator but I cannot use ...
1
vote
1answer
357 views
Using Zend_Paginator without Select Adapter
I want to use Zend_Paginator but Zend_Paginator requires Zend_Db_Select as input parameter.
My SQL query is some how a little complicated making it so difficult to implement with Zend_Db_Select.
Can ...
1
vote
1answer
262 views
Zend Paginator - Page Links
I have a working paginator. I combine Zend Paginator and jQuery to switch between pages. My problem is that the page links only have a range from 1 to 10 but it should be e.g. from 1 to 13. I can get ...
1
vote
2answers
441 views
Zend_Paginator: no page number on links on a page with no page number specified by the URL
Without sticking /1 onto a url is there away to change Zend_Paginator to approach a URL? Currently the user goes to /aaron/studio. Then the user should click through the paging and start accessing ...
1
vote
2answers
259 views
Zend_Paginator - Increase querys
I started using Zend_Paginator,
it works everything fine but I noticed that there is one more query which slows the load time down.
The additional query:
SELECT COUNT(1) AS `zend_paginator_row_count` ...
1
vote
0answers
392 views
Zend_Paginator and cache. How can I read the datas that I have sent to cache
I register the data to cache and I see the foliowing :
zend_cache---Zend_Paginator_1_42242d5fa3c4e4b7758810c276163e8a
but I can't read.
$request = $this->getRequest();
$q = new Model();
...
1
vote
1answer
501 views
Zend Pagination with array
I'm currently using ezSQL, which I believe to be a great SQL wrapper. I've been tasked with adding in pagination that we can just drop in. Zend has one, which seems like it should work, as it's ...
0
votes
1answer
44 views
zend paginator not including CSS
i have used zend paginator in my app its working fine the way its .but when i click on any link i mean any pagination it query right info but the css is not applied there.initially when page renders ...
0
votes
2answers
25 views
I have array of plain PHP object that I want to use in conjunction with Zend_Paginator and partialLoop
I am implementing DAO pattern in my sample app and I have plain array that contains User(domain) fetched from UserMapper I want to use Zend_Paginator with array adapter, but it does not work it only ...
0
votes
1answer
71 views
Zend Paginator and Routes
I have read that I would need to setup a route to keep the values in the URL.
That's the application.ini example showed in the zendframework reference guide:
routes.example.route = ...
0
votes
1answer
54 views
Dynamically changing the result of a zend paginator
I'm struck with a Zend paginator issue for the past two days.
My html side
I have a form with 4 checkboxes on clicking any of these checkboxes the form will submit using jquery and based on that ...
0
votes
2answers
57 views
zend pagination url format
i've followed the pagination tutorial from http://framework.zend.com/manual/en/zend.paginator.usage.html
I have successfully implemented pagination for my site, but i am not satisfied with the URLs ...
0
votes
1answer
63 views
Zend_paginator: changing number of per page elements, when displaying page x (where x>1)?
I know, that I can change number of 'per page' elements, when I'm on the first page, but, after I change the page (so there are GET parameters), I'm not able to change number of 'per page' elements.
...
0
votes
0answers
103 views
Zend_paginator doesn't change perPage value, when there're some GET parameters
It works perfectly, when I am on first page of the results - I can display the number of results I need.
But when I'm on another page, the number of results cannot be changed. Why is that?
And when ...
0
votes
1answer
31 views
Need help with zend framework paginator
I wanted to generate a table with dymanic columns and rows
Example if i have a array of
1.1, 1.2, 1.3, 1.4
2.1, 2.2, 2.3, 2.4
3.1, 3.2, 3.3, 3.4
Currently is displaying 1.1 1.2 1.3 1.4
then 2.1 ...
0
votes
1answer
255 views
zend pagination page range vs item count per page
This may be a very basic question. But it is not very clear to me, the difference between
setItemCountPerPage and setPageRange. The zend manual defines both as below. I don't see a difference on ...
0
votes
1answer
190 views
Zend_Paginator with result of Zend_Db_Table_Abstract
i have many class in model directory that those are extend of Zend_Db_Table_Abstract.
but i need use of zend_paginator and this need to result of Zend_Db_Select !!
so when i use of this code ...
0
votes
1answer
104 views
Zend Route Overwriting each other
Edit, Slight problem caused by the fix in the respond below:
Now these rules clash:
$router->addRoute('view-category', new Zend_Controller_Router_Route(':id/category/:page', ...
0
votes
1answer
417 views
Zend Paginator in Symfony (For Lucene Search Result)
I've written the question in symfony forum, but got no result. Of course I know that people may be busy or unavailable so I can't have my answer right away. But I really needs this fast, so I posted ...
0
votes
2answers
349 views
How to use zend paginate with normal sql query rather than zend_db_select
so basically you can use zend paginate via the following:
$sql = new Zend_Db_Select($db);
$sql->from(table);
$sql->where(zend_db_select_sucks = 1);
$paginator = Zend_Paginator::factory($sql);
...
0
votes
1answer
240 views
Use zend_lucene_search with Zend_Paginator cache
I want to cache my results from Zend_Lucene_Search using Zend_Paginator::setCache()
I get the following error:
Warning: fseek() expects parameter 1 to be resource, integer given
Here is the ...
0
votes
2answers
375 views
Zend Paginator displays wrong page count when query has “distinct”
I'm using Zf 1.10 on a project, and have been using Zend_Paginator together with Zend_DbTable queries quite successfully until this bit.
The query requires a DISTINCT keyword to remove duplicate rows ...
0
votes
1answer
689 views
Zend Router Route Regex with Search params
Trying to grab the params after ?. I need them to add to the Zend_Paginator.
ex: http://www.example.com/test/show?name=xxx&age=20&sex=m
Building a paginator for search results.
Is there any ...
0
votes
3answers
507 views
zend framework paginaator results too slow
I have a query that running way too slow. the page takes a few minutes to load.
I'm doing a table join on tables with over 100,000 records. In my query, is it grabbing all the records or is it getting ...
0
votes
3answers
790 views
PartialLoop with Zend_Paginator Object Issue
Is it possible to use the findParentRow() method from within a Zend_Paginator Object? I'm trying some code that works fine on an object returned by fetchAll from a DB resultset and works fine. With ...
0
votes
1answer
412 views
can zend_form be used with pagination?
I am not sure if this is the most sensible way of doing this but I thought I would ask anyway.
I have a 'wizard' that I am developing for users to review data that is stored in the database. Each ...
0
votes
3answers
572 views
Zend_db & Zend_paginator - Not having a fun time
I am having a serious problem converting my 'select' statement into something that will work with the zend paginator... could someone have a crack at it, as I am having no luck...
Here is my query:
...