Grid built with Twitter Bootstrap and Backbone.js

backbone.js, twitter-bootstrap

Solution

Found it :) It's called Recline.js http://reclinejs.com

Problem

Is there a simple modular grid built with Twitter Bootstrap (table) and Backbone.js that provides functionality like ajax loading, sorting, paginating and inline editing? So far I found some solutions, but none to match this requirements: - http://datatables.net/media/blog/bootstrap_2/ -> Twitter Bootstrap & jQuery DataTables. I don't like this because all the grid logic (ui / model) is already implemented into one big, tightly-coupled file (jquery.dataTables.js) - http://teleological.github.com/slickback/ -> SlickGrid (jQuery-backed datagrid) & Backbone. I also don't like this because first of all it uses a layer of abstraction to integrate with Backbone (slickback.js) and secondly the ui is mixed between Slickback and SlickGrid and cannot be easily adapted to Twitter Boostrap table for example.

Original source