Version 7, changed by rachel 12/20/2006. Show version history
It is maintained by Rachel Willmer from the answers provided by Tom on the dojo-interest mailing list (and a few things I've worked out for myself...)
Follow this link for the nightly test page.
Yes. Just add dojoType="filteringTable" to the table definition. For example,
<script type="text/javascript">
dojo.require("dojo.widget.FilteringTable");
</script>
<table dojotype="filteringTable" ...>
You might also want to define the stylesheet settings, or set other FilteringTable parameters here, but they're not necessary.
Look at the documented source of the nightly test for more information.
Yes. See the source of the nightly test for how to use JSON data to directly populate the data store.
Yes. See how to do it here.
http://archive.dojotoolkit.org/nightly/tests/widget/test_FilteringTable_programmatic.html
Also, I've put a complete example where both column definitions and data are pulled from a remote server here
http://www.willmer.com/kb/2006/12/programmatic-usage-of-filteringtable/