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');
$row->findDependentRowset($table, null, $select)
thank's
|
is there a way, hot to apply paginator limit on select, which I send to findDependentRowset function? for example:
thank's
| ||||
|
feedback
|
|
You need just add limit to your select passed to findDependentRowset. It will look like this:
| |||
|
feedback
|
|
this looks good, but paginator will don't have information about all rows count. I found solution to override Zend_Paginator_Adapter_DbSelect and set function
this will return select with applied limit and I can use Paginator with its whole funcionality | ||||
|
feedback
|