views:

95

answers:

4

I need a sortable table or grid widget in JavaScript which can handle real-time updates. I will be updating rows within the table via updates from Comet and preferably don't want a widget that requires me to redraw the whole table on each update or hogs the CPU when updating.

+1  A: 

Try ExtJs. It has configurable data adapters that can work from local data (XML, array, JSON, etc.), or remote.

There are many grid examples, but this one might meet your needs.

RedFilter
+1  A: 

I've never used it, but I did come across jqGrid a few days ago. Has loads of examples.

Main Site
Examples

thorncp
A: 

Dojo's Dojox Grid purportedly supports this feature when used with a QueryReadStore as its backend.

Unfortunately, I do not have a working example of this.

Lee Fogel