yeah, that method *seems* like it would work

i added in the main js this "alert"

                    // apply easy methods that trigger binded events
                    $this.bind("update", function() {
                        alert("Update Called");
                        // rebuild parsers.
                        this.config.parsers = buildParserCache(this,
$headers);

                        // rebuild the cache map
                        cache = buildCache(this);


and wired checkboxes on a sortable table like so

                $(":checkbox").click(function() {
                    $("#myTable").trigger("update");
                });

and that alert did indeed fire... but no change in cache...

ah well, i tried...  good luck with this....

Reply via email to