ludo / jquery-treetable

jQuery plugin to show a tree structure in a table
http://ludo.cubicphuse.nl/jquery-treetable
GNU General Public License v2.0
741 stars 278 forks source link

"Error Cannot read property 'tree' of undefined" on click event #187

Open mletov opened 8 years ago

mletov commented 8 years ago

Hi, Ludo! Help me, please. I need load new branch by ajax. I tried your example:

 $(".SPaddBranch").on("click", addBranch);
    function addBranch()
    {
        var node = $(".tbl-targets").treetable("node", "trg-146");
        ....
    }

but i got "Error Cannot read property 'tree' of undefined"

If i simply write var node = $(".tbl-targets").treetable("node", "trg-146"); not in event handler - all good. I read about similar error https://github.com/ludo/jquery-treetable/labels/support but it is different case.