textField : stringDefault: 'text'

Text field name.

Examples

sample

    
 <div id="tree"></div>
 <script>
     var tree = $('#tree').tree({
         textField: 'newTextName',
         dataSource: [ { newTextName: 'foo', children: [ { newTextName: 'bar' } ] } ]
     });
 </script>