Tagged Questions

1
vote
2answers
56 views

Zend_Paginator; is it optimized??

Hello, 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); …
1
vote
1answer
55 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
39 views

can zend_form be used with pagination?

Hi, 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. …
0
votes
3answers
123 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: …
3
votes
4answers
525 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 …
2
votes
2answers
363 views

Zend_Db_Table Relationships and Zend_Paginator

Hi, 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'); …