3
votes

I am using the fancytree for my application. https://github.com/mar10/fancytree

I can see the list of events from their plugin. http://wwwendt.de/tech/fancytree/doc/jsdoc/global.html#FancytreeEvents

But I could not find an event for the following scenario.

Which is the event that I can use to identify whether the fancy tree completed the rendering job.

1
The question is not clear. What is rendering job? Please post your code also - Tan Duong
Judging from the docs, it should be the create event. The naming is a bit unfortunate, but the description is clear: "Widget was created (called only once, even if re-initialized)." - Patrick Hund
@TanDuong, don't you understand? The question is, when we do an action with the list of data with Fancytree, It will populate the elements in the DOM. I wanted to know the event that to identify when Fancytree completed it's rendering job. - Jeeva J

1 Answers

2
votes

I would think that ‘init’ is probably the event that you are looking for. Note however that fancytree only renders visible nodes, i.e. when the parent is expanded.