Tagged Questions
The paginate tag has no wiki summary.
4
votes
1answer
203 views
endless pages in rails 3?
I've tried following railscast 114 and several other links to get endless pages in a rails 3 app ive been building. I'm a beginner and I have followed teachmetocode's twitter replica tutorials. Which ...
4
votes
1answer
1k views
Rails 3 - “More” ajax pagination with Kaminari
I am trying to do a "Twitter like" pagination with a "More" button to load results with Kaminari.
I found this question here
But I can't figure out how to make it works and if it's a good approach.
...
4
votes
1answer
1k views
Cakephp retrieving HABTM which Conditions
I'm using cakephp and would like to display all Submissions which are part of Category 'X'
I have 4 tables with a HABTM relationship.
Users -> (haveMany) -> Submissions <-> (hasAndBelongsToMany) ...
3
votes
1answer
359 views
rails ancestry pagination
I've just followed the Railscast tutorial:
http://railscasts.com/episodes/262-trees-with-ancestry
Is it possible to paginate results from Ancestry which have been arranged?
eg: Given I have the ...
3
votes
1answer
121 views
Can i paginate a JList
Is there a way to paginate results in JList, i have 100 results shown, i only want to show 20 each time .. i thought of using tables to show my result but i am showing tweets, so it is a JPanel that ...
3
votes
1answer
634 views
cakephp paginate using mysql SQL_CALC_FOUND_ROWS
I'm trying to make Cakephp paginate take advantage of the SQL_CALC_FOUND_ROWS feature in mysql to return a count of total rows while using LIMIT. Hopefully, this can eliminate the double query of ...
2
votes
3answers
92 views
How can I add pagination to my code? What is the next step to get this pagination working?
In my code I have like thisHow to do pagination............
////////This is my pagination class///////
class simple_pagination
{
function check_integer($which) {
...
2
votes
4answers
345 views
Paginate from within a model in CakePHP
I have a function in my Event model called getEvents - you can pass limit, start and end dates, fields, event types, and event subtypes.
I read that paginate can accept all the parameters I'm using ...
2
votes
7answers
379 views
Paginating with Coldfusion
Is it possible to paginate and display number of pages in Coldfusion using only one query?
My understanding is you can obviously paginate with one query, but you would need an additional query to ...
1
vote
1answer
35 views
Cakephp pagination with random order?
Ok, I have looked and looked but cannot seem to find anything on this anywhere. I have a display of results that are paginated beautifully, but they currently display in ascending order. I'd like for ...
1
vote
1answer
62 views
How do I concisely write x = x - 4 unless x is less than 0, in which case x = 0?
I am doing some pagination and can do @next_images_to_paginate += 4 without a problem.
But @previous_images_to_paginate -= 4 doesn't because I can get negative numbers.
I can't use absolute because ...
1
vote
4answers
78 views
Paginate 20,000 API results without database
I access a SOAP webservice which can return results, for example, of 20000 ID's in array form.
I need to then use the same webservice to get more information about each of those 20,000 ID's but ...
1
vote
1answer
327 views
Error with Kaminari pagination
I would like to paginate my objects with the Kaminari pagination gem. I have this line in my controller:
@products = Product.order("id").find_all_by_id(params[:id])
That line in my view:
<%= ...
1
vote
1answer
107 views
Select specific field of nested HABTM array
I have a tickets table, and a contacts table. A ticket can have many contacts.
I am paginating the tickets table, and want it to select specific fields including the first linked contact form the ...
1
vote
2answers
501 views
cakephp - sorting by a second level association in paginate
I am playing around with a quotes database relating to a ski trip I run. I am trying to list the quotes, but sort by the person who said the quote, and am struggling to get the paginate helper to let ...
1
vote
2answers
168 views
Paginate Dynamically created table in Cakephp?
Please look at the sample code
mysql_query('SET AUTOCOMMIT=0;');
mysql_query('START TRANSACTION;');
$tableName = rand().'_table;'
...
1
vote
1answer
1k views
Grails paginating multiple tables
I'm trying to paginate through 2 tables on 1 gsp using 2 g:paginate tags. Hitting the paginate button on 1 table paginates both tables because both paginate tags are using the same 'max' and 'offset' ...
1
vote
1answer
1k views
Paginating get_posts() in Wordpress
This a template page in my wordpress (have removed html), it pulls out the posts from my wordpress database. I want to paginate it but have no idea! :(
I wan't to get something like this
...
1
vote
2answers
381 views
In Django-pagination Paginate does not working
Python 2.6.2
django-pagination 1.0.5
Question: How to force pagination work correctly? The problem is that {% paginate %} does not work, but other {% load pagination_tags %} and {% autopaginate ...
1
vote
3answers
519 views
Any simple frameworks for pagination in App Engine?
I want to find a framework for pagination in Google App Engine.
Do you know of one?
1
vote
3answers
605 views
jquery toggle+paginate+multiple instances
I'm a jquery newbie - wanted to ask what might be the best strategy for achieving what I am after as I think it uses a mix of jquery functions :
If list of items exceeds 5 items a 'more' link ...
1
vote
1answer
96 views
A question about the order of pagination
Currently I'm deal with a history message page using Cakephp.And I got a problem about records' order.In the controller,codes about pagination as follows
$this->paginate['Msg'] = ...
1
vote
2answers
609 views
Jquery Cycle: How Can I Paginate the Pager?
I am using the Jquery cycle plug in with the pager. I have a lot of items to page through. Is there a way I can add back and previous arrows to paginate the pager?
So I have like:
1 2 3 4 5 6 ...
1
vote
4answers
654 views
store a queryset in the session with django
I have problem storing a big queryset in the session. This queryset is from a search and I need to store it for paginate inside every result. This is the code in my view:
c = ...
1
vote
1answer
431 views
Groovy paginate problem
I have an application written in groovy and I am having problems with the pagination of a resulting set.
I have a Controller called ReportingController. This controller has two methods called
...
0
votes
0answers
31 views
Show search results from either content, titles or tags
I've been working on my page's searching for a few days now. Basically what I want to do is to have searches show results (pages and/or posts) generated by the searched term(s) matching either the ...
0
votes
2answers
17 views
cakephp pagination with count issue
I have written below code in my controller action.
$this->paginate['Tag'] = array(
'fields' => array('COUNT(tag_id) AS numbers', 'tag', 'slug'),
'limit' => 50,
...
0
votes
2answers
42 views
CakePHP afterFind() kills the total paginate count
I am using a containable paginate operation and afterFind() for removing empty arrays in my records but that makes a problem in pagination.
This is the afterFind function:
function ...
0
votes
1answer
47 views
cakePHP containable model should not be empty
I have problem in filtering records, I don't want any records have empty models.
$this->paginate = array('fields' =>
array('DISTINCT Joborder.id',
...
0
votes
1answer
33 views
Why is CakePHP 1.3 Pagination ignoring my order?
I have a reports model, and I for the life of me cannot get it to change the order because of the use of the $this->paginate() in displaying the data. What am I doing wrong? It's as if the $paginate ...
0
votes
0answers
41 views
CakePHP paginate hasmany relation
I've seen there is quite a lot of post over this topic but I still could not find a solution :(
Model: User, Package, Package_Users
They are connected over a hasMany relation (User and Package ...
0
votes
0answers
23 views
wordpress post permalink with paged arg
Im using paginate_links into my single post and i need capture page query var for pagination.
In this case:
http://www.vaftv.cl/noticias/page/9
is working fine but i need capture it for keep ...
0
votes
1answer
55 views
Expression Engine 2 Next/Previous Entry Linking with Full Entries List
I want to use the Next/Previous Entry Linking technique in EE2:
{exp:channel:next_entry}
<p>Next entry: <a href="{path='site/comments'}">{title}</a></p>
...
0
votes
1answer
31 views
Grails paginate usage
What is wrong with this code, because im getting all the results returning to the view, which takes me too much to load. I want it to return only 5 per page.
Controller:
{
def channel2 = ...
0
votes
0answers
51 views
Paginated WPF DataGrid (bound to ListCollectionView inherited class) creates a bug behind the scene
Following the method suggested in
How can I paginate a WPF DataGrid?
, the paging seems to work very well.
HOWEVER, while for the FIRST page, the user's row selection behaves as expected (blue ...
0
votes
2answers
61 views
Assign empty array to $this->paginate() in cakephp conditionally
I'm a cakephp beginner with not much coding experiences. I am trying to assign empty array on the '$this->paginate()' function conditionally but it is not working. Below is my partial code in ...
0
votes
1answer
81 views
How to paginate the get_users function?
Im using the get_users function to show a custom list of users on the site. The only issue Im having a problem figuring out now is how to paginate the result.
This is a sample of the function that Im ...
0
votes
2answers
47 views
Cakephp 1.3: Displaying user data in paginated comments
another fairly basic question I suppose, but I feel like I'm running in circles and out of ideas, haha.
I'm trying to create a commenting system with pagination (via Ajax), which has to be able to ...
0
votes
0answers
45 views
How can I set the paginator page from within the controller in cakePHP
I have a standard cakePHP backend but I'm not using the cake pagination helper. My existing frontend provides pagination params in the form "startIndex, numberOfResults" vs. "page". It would be ...
0
votes
1answer
96 views
CakePHP Paginate() the results from a find subquery?
This is a follow-up to an earlier question here: CakePHP find statement for a sql query involving two models
I wasn't sure whether to add it on to there, but I figured this is a new question in ...
0
votes
0answers
61 views
Codeigniter Pagination with PHP compression
I've put the pagination 'pagination.php' into the config folder so that the style should be globally available. When I enabled PHP compression it returns me error "Content Encoding Error". I guess ...
0
votes
0answers
34 views
Jython Django1.3 admin panel pagination does not seem to work
i have a basic django-jython aplication which i am using admin panel on it, and it seems even if i declare the 'list_per_page = 25' in my admin.py for each modeladmin class, it cant paginate the ...
0
votes
1answer
76 views
Cake PHP show videos ORDER BY rating
Now I began to get acquainted with the Cake PHP.
The following is the problem:
I have two tables. The two models look like this:
class Video extends AppModel {
var $ name = 'Video';
var $ hasMany = ...
0
votes
2answers
121 views
Kohana 3.0 paginator does not paginate
i have a problem with the kohana pagination. i have made a method for paginating elements from the database, (let's say 3 on a page), but, (though the pagination links are there), the pagination is ...
0
votes
2answers
89 views
Incorrect ordering of associated Rails model when using will_paginate
I'm having problems ordering with the will_paginate plugin. Here are my models
Forum
class Forum < ActiveRecord::Base
has_many :topics, :dependent => :destroy
has_many :posts, :through ...
0
votes
2answers
215 views
Paginate through posts of a single category in Wordpress single.php
I have set up a site using Wordpress as my CMS. I am using the site as a portfolio to show off my front-end web dev skills and have another area of the site for a blog. I got around the issue of ...
0
votes
1answer
276 views
Paginate the uiwebview in iphone
I'm now implementing an epub reader in iphone. I'm using uiwebview to display the files. It works fine but I cannot paginate a html file in uiwebview.
I use the following code to paginate the ...
0
votes
2answers
353 views
Paginate results filtered by condition on associated model (HABTM) using Containable
I need to paginate list of Products belonging to specific Category (HABTM association).
In my Product model I have
var $actsAs = array('Containable');
var $hasAndBelongsToMany = array(
...
0
votes
1answer
219 views
CakePHP paginate 'virtual' field
I have a model Item with its corresponding table items and fields (field1, field2, etc).
I have another model, Comment, whith also its table and fields. One of the fields is item_rating, where users ...
0
votes
1answer
111 views
CakePHP paginate twice
I have a paginate call, as in $users = $this->paginate('User');.
But then I make a call to update the $users array with some stuff (third party). How do I get paginate to call itself again?
...