Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Data table/grid widget with Backbone.js

Can any one suggest a data table/grid widget to use in a application backed by Backbone.js & jQuery?

Currently I m using DataTables.net widget, and I've written a custom binding sort of functions for Backbone.js. But binding with Backbone and its API are seems complex to me. Is there any widget which is simple and with clean & clever API (I liked YUI grid, but to use the grid alone JS size is around 360KB+)

like image 661
manikanta Avatar asked Sep 10 '11 16:09

manikanta


3 Answers

I just released Backgrid.js.

Backgrid.js is a powerful set of widgets for building data grids on top of Backbone.js in 4.7K. It generates semantic HTML so its extremely stylable and customizable. The core works on mobile and comes with lots of extensions for many extra features too.

like image 85
Y.H Wong Avatar answered Oct 21 '22 05:10

Y.H Wong


I'm a fan of http://tablesorter.com

it's a jquery plugin that turns any standard html <table> element into a sortable, pageable grid. and since it's just a jquery plugin, there's no conflicts or any special considerations for using it with backbone

really, though, any jquery table / grid plugin should work

like image 4
Derick Bailey Avatar answered Oct 21 '22 05:10

Derick Bailey


Slickback is a javascript library that adapts Backbone collections to work with SlickGrid, a jQuery-backed datagrid. Extensions include support for paginating collections

Demo: http://teleological.github.com/slickback/

like image 4
denysonique Avatar answered Oct 21 '22 04:10

denysonique