MagicGrid ========= [![Build Status](https://secure.travis-ci.org/rmg/magic_grid.png?branch=master,stable,release)](http://travis-ci.org/rmg/magic_grid) Easy collection display grid with column sorting and pagination. Displays a collection (ActiveRelation or Array) wrapped in an html table with server side column sorting, filtering hooks, and search bar. Large collections can be paginated with either the will_paginate gem or kaminari gem if you use them, or a naive Enumerable based paginator (without pager links) if neither is present. Tables are styled using Themeroller compatible classes, which also don't look _too_ bad with Bootstrap. Basic Usage ----------- In your `Gemfile`: gem 'magic_grid' In your view: <%= magic_grid(@posts, [:title, :author]) %> Or a more realistic example: ```rhtml <%= magic_grid(@posts, [:title, :author, "Actions"]) do |post| %>