- Multiple Column Sorting (number of columns settable, default is 1
- Sorting in place (non-destructive)
- Per-column programmatic filtering
- Add and remove rows on the fly
- Update field values (with typing) on the fly
- No restrictions on sorting on markup
New Widget: FilteringTable
Submitted by ttrenka on Fri, 08/18/2006 - 05:36.
I've just finished some final touches on FilteringTable, SortableTable's big (I mean BIG) brother...complete with multiple column sorting, much cleaner data access, the ability to filter, sorting in place, data binding to a simple JSON-based data store...
There's a lot there, so for now I'll point you to the tests in the nightlies. Current feature list:
- ttrenka's blog
- Login or register to post comments
- Unsubscribe blog
- Subscribe post

[...] Además, por lo que
Any chance locked columns or
Can i have the url where i
"Update field values (with
1. No, FilteringTable does
Filtering table
If possible can u send me full example of filtering table.
i want a table with sorting and resizeble column.
so please send me this example if possible
Wow! This is VERY nicely
I put checkbox in
also You defined rowClass
Can someone from dojo
I posted a widget called the
Andy, You have it right.
I am desperately waiting for
How to use the results of
Hi. now, i have to hide an
What is the link to the GRID
Hi Friends, After extensive
Hi Arun, DHTML grid looks
In order to use that DHTML
I got tired of waiting for a
I'm using FilteringTable
I think GRID is the widget
I had heard that IBM is
DHTML GRID is GPL Licensed
Great stuff, but how do i
Greetings All, how to
Hi TOM, nice work, can you
Hi, as posted by Carlos on
instead of hiding an id
Is there anyway to enable
I'm using the latest nightly
Hi, I have value attribe
Hi, I have a value
Hi, I put some codes (e.g
Hi, I put some codes (e.g
Likewise, I put custom CSS
how can i add tr's onclick
You could do something like
You could do something like that for a filteringTable :
function init() { var filteringtable = dojo.widget.byId("id_yourfilteringtable"); var tbodie = filteringtable .domNode.tBodies[0]; // The onclick event on the tbodie dojo.event.connect(tbodie, "onclick", "insideTBodie"); } function insideTBodie(evt) { var tr = dojo.html.getParentByType(evt.target, "tr"); if (tr) { var data = dojo.widget.byId("parsedFromHtml").getDataByRow(tr); // Here, you can use the data coming from your clicked row dojo.log.debug(data.Id + " " + data.Name); } dojo.addOnLoad(init);inline Editing
I really like filtering table and I used it almost everywhere in my web application. I am trying to add inline editing box to filtering table but failed. could you please let me know if there's a way to enable inline edit for filtering table. also, I add "maxSelect=1" to the filtering table to disable multiple selection, but it does not work. should I use some other function to disable multiple selection? Thanks a lot
filteringTable support for currency format
hi i would like to display amount in comma seperated format
e.g. 110229823.001 - 11,02,29,823.001
Is there any dataType supported in filteringTable which would server the purpose !!
Many Thanks,
Sandeep
This isnt an avenue for support...
Follow the support links in the left hand menu if you need help.
-Karl