This seems like a classic rails situation: I want to have a my index action display a sortable table of the items. I've looked at (and hacked at) some plugins, notably thoughbot's sortable_table and Michael Kovacs's sortable (the latter I have forked and improved). However, now I'm finding that sortable is somewhat incompatible with inherited_resources and I'm getting frustrated with fixing code that's not really being maintained.
And yet ... everyone must hit this need in their app, right?
So, what's the best solution? Does everyone roll their own? Is there a plugin I haven't heard of yet? Do people not bother with sortable tables? Is there some javascript/ajaxy thing I should be using instead? I'd love to find a better solution.
Update: should note that my database table is too big to load all of the rows, that would absolutely kill performance.