I\'m having some problems with creating pagination with a HABTM relationship. First, the tables and relationships:
requests (id, to_location_id, from_locatio
I've been able to get it working somewhat, but the solution doesn't feel very cakey at all.
$items = $this->paginate( $this->Request->ToLocation->Item, array( "Item.id IN (" . "SELECT item_id FROM items_locations " . "WHERE location_id = " . $locationId . ")" ) );