Topic: onComplete event?

Hi,

Is there an onComplete event?  I need to run another function after the tree as finished loading...how do I do it?

Thanks
Adriaan

Re: onComplete event?

try this

 tree = new Mif.Tree({
    container: $(containerid),
    forest: true,
    initialize: function(){ 
        ....
        ....
      },
          types: {
        ....
        },
      dfltType:'folder',
      height: 18,
    ....
    ....
 }).addEvent('load', function(){
        alert('start')
    })
});