Event fires after the loading of the data in the tree.
Parameters
Name | Type | Description |
---|---|---|
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>