The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
58 views

ZF2 paginator performance with fetchAll without limit?

Most of cases in ZF2 I would do a paginator like this: public function fetchAll() { $resultSet = $this->tableGateway->select(); return $resultSet; } $iteratorAdapter = new ...
0
votes
0answers
99 views

How to implement a pagination for a search module in Zend Framework 2?

I have a module Search in my ZF2 application. The user fills in a search form out and gets a list of courses. Now I'm adding the pagination to the module. The paginator is basically working: I can ...
0
votes
0answers
112 views

Pagination doesn't work with the HAVING clause in Zend Framework 2

I've implemented a pagination similar to how it's shown here: Search\Model\CourseTable class CourseTable { const RELEVANCE_TITLE = 5; const RELEVANCE_DESCRIPTION = 2; const ...
3
votes
1answer
82 views

ZF2 paginator don't show last page

I have 6 records in query and this code correctly show it on 3 pages: (action) public function listAction() { $page = (int) $this->params()->fromRoute('id', 0); ...
0
votes
0answers
61 views

Zend Framework 2 Paginator, first results but not all

I'm using Zend Paginator to show some search results and I have some bugs with... I have a DB request which I use: $entity->buffer(); $entity->next(); Because Paginator doesn't work without ...
0
votes
1answer
154 views

Zend Framework Vanity Url Pagination not Working

I'm working on a Zend Framework application and I just got my vanity routing working using the guide at http://tfountain.co.uk/blog/2010/9/9/vanity-urls-zend-framework/, but my pagination isn't ...
2
votes
1answer
124 views

Zend_Paginator let users choose the number of rows per page

I need some conceptual advises with Zend Framework pagination. I'm using Zend_Paginator that works like a charm, from my view, I'd like a selector for the user to choose how many rows per page (s)he ...
0
votes
2answers
109 views

How to use $_GET with paginator?

I added in my project sorting data by select->order by $GET-variables. But when I navigate through the pages by paginator, of course this variables are not passing on the next page. What is the best ...
0
votes
1answer
39 views

zend2 routing paginator and module

I'm having issues with Zend Framework 2 Router object. I'm trying to implement Zend\Paginator into the quickstart routing mechanism example without success. Let me explain: After following the ...
0
votes
1answer
103 views

Zend Paginator+Table Gateway: error

Error: elements of paginator are objects (not arrays). var_dump($records): object(Records\Model\Records)#240 (11) { ["id"]=> NULL ["name"]=> string(9) "5453gdfgd" ["email"]=> string(16) "igor@bk.ru" ...
1
vote
1answer
60 views

Error via paginating

Thrown next exception: Zend\View\Renderer\PhpRenderer::render: Unable to render template "./opt/lampp/htdocs/guest-book/module/Records/view/records/records/paginator"; resolver could not resolve to a ...
0
votes
1answer
39 views

Zend_Paginator reversed order

I have a question about the Zend_Paginator. By default pages goes like: <Previous 1 2 3 4 5 6 7 8 ... Next> Is this possible to have order like <Previous 8 7 6 5 4 3 2 ... Next>
0
votes
1answer
81 views

Pagination in Zend not working

I have an array of items. Items are files paths. I have set up pagination but when I click on next it does not change. I want to display 1 pdf per page. Below is my code class IndexController extends ...
0
votes
1answer
53 views

Zend_Paginator for Categories

I have used Zend_Paginator in my Index action , this show all my catalog : public function indexAction() { Zend_View_Helper_PaginationControl::setDefaultViewPartial('/pagination.phtml'); ...
0
votes
2answers
188 views

Zend Framework: passing GET params to paginator

I'm trying to finish search form and one of it parts is pagination. The problem is next: I don't know how to pass GET params to paginator links (ex: /page/2?search=query). I have created ...
0
votes
0answers
132 views

Pagination of dynamic text using javascript is not working

First of all, I am in the learning stage of PHP , and know very little javascript, so please be easy on me :) I am trying to break a long article retrieved from the database so that it is displayed ...
0
votes
0answers
56 views

How to paginate Doctrine Native Query in Zend Framework

I have a query that cannot be written using DQL as it uses IF statements in the SELECT to get SUMs with different criteria. I now need to paginate the result, however, the Doctrine Extensions ...
0
votes
1answer
108 views

Zend Paginator with query from string

I have complicated query to my database, which I run via raw SQL query. Not using zend orm. I'd like to add Zend Paginator for my query. From Zend docs, I've found, that I need to give all records ...
0
votes
0answers
88 views

Zend paginator adapter for solr

I've created a paginator adapter for my solr application. Currently the query is executed 2 times, 1 for the results and 1 for the counts. Is there a possibility to do just one query? I was thinking ...
0
votes
2answers
201 views

Zend Cache with pagination is not working

I'm new with Zend Framework. I'm using Zend cache, I pretty much copied code from the documentation, here is my code: $frontendOptions = array( 'lifetime' => 3600, // cache ...
2
votes
1answer
175 views

ZendFramework 2:Syntax error or access violation: 1066 Not unique table/alias:

I am a new at Zendframework 2. I am trying to join two tables and display the result. The two tables are. Works and Artist . The tables are joined based on artist_id. STEP 1> Created 2 ...
0
votes
0answers
18 views

How do I paginate records which are shown using the “action” method of Zend_View_Helper_Action in view file

In a view script (which is shown using the "feedback" controller's "view" action) I am calling an action of other controller ("comment" controller's "index" action) like this <?php echo ...
0
votes
4answers
3k views

Zend Framework 2 Paginator + TableGateway

How to use the database mapper with the paginator? I'm having a bit trouble understanding how I implement the DbSelect paginator using the code below (right now it's using the Iterator adapter which ...
0
votes
0answers
64 views

Pass additional data into Zend_Paginator element

I have Problems model and each Problem has a relation with Category model so every Problem has exactly one Category. Here's my code which nicely returns the Problem and Category name to my view. ...
2
votes
0answers
74 views

Issue caching Zend_Paginator with DB profiler enabled

I am having a bizarre issue when trying to cache Zend_Paginator and having the Zend_Db_Adapter profiler enabled. It creates a cache file, but each ID is different meaning that the cache hit will ...
0
votes
0answers
61 views

javascript jquery does not work with pagination

Hi,I'm trying to hightlight a row in table.I'm using pagination of the table.The problem is highlighting the table row,works only with the first page and not with the other pages.Below is my table, ...
0
votes
1answer
231 views

Zend Pagination : How ot get arrray of data

I am using zend paginator. I am getting following structure by using $this->paginator: ( [_cacheEnabled:protected] => 1 [_adapter:protected] => Zend_Paginator_Adapter_Array Object ( ...
0
votes
2answers
460 views

How to reuse the paginationControl partial while passing different parameters to each instance

I'm using the paginationControl partial, and passing parameters through the 4th parameter to allow me to paginate "filtered" results. That's working fine, but I'd like to be able to use the same ...
0
votes
0answers
118 views

Zend paginator not working properly when array format is not as it should be

Hi my zend paginator works well when the $business_list array format is like below. but when the array format changes it displays only one page instead of many pages. $paginator = ...
0
votes
1answer
195 views

Manipulate Zend_Paginator Data

I want to add product variations to my product view table which uses the Zend_Paginator. With this code I get my products. $select = $productModel->select() ... (so on) With this code I create ...
2
votes
2answers
1k views

How to create php pagination without page numbers

I need to create pagination and it should not have page numbers as if I have it then I need to load all data at page loading.(I was ordered to do so) I am little bit lost. Don't know where to start ...
0
votes
3answers
506 views

How to get first and last items number with Zend Paginator?

I need to get the fisrt item and last item number in my view.phtml. The trouble is that I can't acces this properties in my pagination control, because of the structure of the html. For example: ...
0
votes
1answer
618 views

Zend Paginator Limit Rows(Optimization)

this is my query class services extends Zend_Db_Table{ function Get_Services($user_id){ $DB = Zend_Db_Table_Abstract::getDefaultAdapter(); $select = $DB->select() ...
0
votes
0answers
206 views

Zend Paginator set URL?

Is possible to set URL (or Module, Controller and Action) for Zend_Paginator links? For example: I have Zend_Paginator in controller Controllerone and action Actionone. So paginator links will be: ...
0
votes
1answer
512 views

Convert zend paginator to array

i have used zend pagination in my controller action.it returns zend paginator object that is in my controller its like this $this->view->paginator=$paginator; in my view i am doing so to ...
0
votes
2answers
454 views

Controller Action calling in different ways in Zend Framework

my Controller action public function abcsajaxAction(){ $start_date = $this->_getParam('start_date'); $end_date = $this->_getParam('end_date'); $myquery; //myquery //zend pagination ...
0
votes
3answers
714 views

how to limit the Number of Pagination Links in Zend Paginator

i am using zend paginator .i dont want from zend paginator that it show me all the pagination links.what it do is that after fetching the result from query $adapter = new ...
1
vote
2answers
237 views

Trying to get property of non-object in Zend Paginator

i am using zend paginator in my app.pagination works well but i get this error Trying to get property of non-object in $user = new Zend_Session_Namespace('user'); $user_id =$user->user_id; $DB = ...
0
votes
3answers
675 views

how to improve Performance of zend paginator pagination

I have made an AJAX based Zend_Paginator, however I dont want to fetch all records from the query. For instance; I have ten items per page so I want that my query fetch only 10 rows. Here is the ...
1
vote
1answer
861 views

how to convert zend_paginator to ajax in zend framework

this is my action,currently my page is refreshing i want it with ajax.so that without refreshing the whole page my pagination div is refeshing loading the content from DB. public function ...
0
votes
1answer
44 views

adding (Showing current start to number of entries of Total entries) in zend Paginator

what i want to do is that i wana show user this Showing 1 to 10 of 50 entries Showing 11 to 20 of 50 entries Showing 21 to 30 of 50 entries Showing 31 to 40 of 50 entries Showing 41 to 50 of 50 ...
0
votes
1answer
234 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
139 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 ...
1
vote
2answers
239 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 ...
2
votes
1answer
690 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']; ...
3
votes
1answer
799 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. ...
0
votes
1answer
459 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
263 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 ...
2
votes
1answer
350 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 ...
0
votes
2answers
930 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 ...

1 2