vote up 2 vote down star

Is there a rails plugin that will do alphabetical pagination/navigation?

I have a very large data set and would prefer something that gave users a more direct navigation cue in addition to 1..2...3...4...5 pagination.

I could code it myself but was wondering if there was a decent plugin out there already that would do it for me.

flag

2 Answers

vote up 2 vote down check

Why can you not have the alphabet for which you want to see the results to, passed as a parameter? And then paginate on the results? That is,

# show results of params[:alphabet] alphabet
@results = fetch_results(params[:alphabet]) 
# Use Will Paginate to fetch results internally and give a condition that 
# fetches results starting with the passed alphabet.

And show paginated results (numbered) using <%= will_paginate @results %> on the view.

link|flag
This is what I expect I'll ultimately do since the data set is so large that it will need pagination within each letter's results. – srboisvert Feb 17 at 8:55
vote up 1 vote down

I implemented something like that a while ago (based on the popular will_paginate plugin): Implementing Grouped Links. It can generate links like:

alt text

Note: I haven't updated this to use named scopes (as I didn't need them). If you feel like adding support for them, please send me a patch.

link|flag
Cool. Just what I was looking for. I'll give it a whirl. – srboisvert Feb 16 at 23:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.