dataBound

Event fires after the loading of the data in the tree.

Parameters

NameTypeDescription
e {object} event data

Examples

Event Sample

    
 <div id="tree"></div>
 <script>
     $('#tree').tree({
         dataSource: '/Locations/Get',
         dataBound: function (e) {
             alert('dataBound is fired.');
         }
     });
 </script>