Tagged Questions
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
696 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
713 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'])) {
...
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
236 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
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 ...
3
votes
2answers
644 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
714 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
2answers
398 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
5answers
857 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
939 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
1answer
66 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
358 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
263 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
1answer
503 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
55 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
1answer
420 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
350 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
2answers
377 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
693 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
792 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
416 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:
...
0
votes
3answers
2k views
Zend Pagination - Seems Not to be limiting number of results on each page
I am relatively new to The Zend framework having only been working with it probably two months at the most. I am now trying to get a list of results from a query I run, send it through the zend ...