I am building a list that will be sorted by the alphabet and am looking for a solution to grab the database result and sort it like this: photo
Any help is greatly appreciated!
|
I am building a list that will be sorted by the alphabet and am looking for a solution to grab the database result and sort it like this: photo Any help is greatly appreciated! |
|||
|
|
Hmm, if you have a list that isn't too massive you might just do it naively like: (This assumes you have a model
And now you can, in your view, do something such as:
Update: If you want to extend the logic on what the 'letter' is, you would probably move the logic into the model, eg:
|
|||||||
|
|
Building on thenduks above, I like: Company.rb
view
|
|||||||
|
|
Try this:
This will work even in scenarios when you do not have items for few letters. Note: You might want to handle the numbers and non English letters differently by modifying the group_by logic. You also have to change the letter name iteration list accordingly. |
|||
|
|