[jQuery] Yet Another Grid Implementation focusing on (gridTable)

Tue, 22 Jan 2008 05:27:15 -0800

Hello,

I recently finished a working beta version of yet another grid-plugin
for jQuery: gridTable

features:
- using a <table>, not ripping it off at all (so no fixed height for
tbody, as overflow:auto on tbody is not supported)
- server-side sorting
- server-side paging
- custom renderers
- custom editors
- custom readers (currently only json implemented)
- public api exposed as events, e.g. $('#my-
table').trigger('updateView');
- trying to follow alsup's plugin-guide (http://www.learningjquery.com/
2007/10/a-plugin-development-pattern)
todo: filtering, the ExtJS grid-filters plugin is very neat and my
ideal (http://ccinct.com/lab/filter-grid/)

nothing really outstanding but i wanted an implementation which is
extensible (renderers, editors, readers), gives me maximum flexibility
(e.g. $('table tbody tr.gt-added').each(...) ) and does not touch the
xhtml table (ripping the tbody off for grid-style fixed-height/
scrolling)

to put it in a nutshell: i dont want a "grid", i want a flexibel ajax-
empowered table to display data-sets.

i didnt create a project-page yet, as the gridTable is part of a
mediaDB im currently working on.
im just curious if there is some interest in yet another grid-plugin.
if so, i would implement the filtering and put it online ...

mediaDB edit-prototype using gridTable:
http://shize.de/media2/index.php/media/edit/id/3
gridTable-src: http://shize.de/media2/views/js/jquery.gridtable.js
gridTable-usage: http://shize.de/media2/views/js/media/edit.js

so long,
kai

please do not XSS, its a prototype ... ;)

Reply via email to