What I did, and for now it's working, is override one of the js
functions:Wicket.TreeTable.attachUpdate
It does nothing now.

Wicket.TreeTable.attachUpdate = function(treeTableId) {
//    // get the object that contains ids of elements on which the update
method was already attached
//    var attached = Wicket.TreeTable.attached;
//
//    // force updating the element
//    Wicket.TreeTable.update(treeTableId);
//
//    // if the update has not been attached to this tree table yet...
//    if (typeof(attached[treeTableId]) == "undefined") {
//        // ... attach it
//        attached[treeTableId] = window.setInterval(function() {
Wicket.TreeTable.update(treeTableId); }, 100);
//    }

    return;
}

I'm sure this not a good thing.

Any suggestions?

Eyal Golan
[email protected]

Visit: http://jvdrums.sourceforge.net/
LinkedIn: http://www.linkedin.com/in/egolan74

P  Save a tree. Please don't print this e-mail unless it's really necessary

Reply via email to