Basic XML nested

This example loads the tree from a XML nested file.

01.$(function () {
02.    $("#xml_n").tree({
03.        data : {
04.            type : "xml_nested",
05.            opts : {
06.                url : "basic_xml_nested_data.xml"
07.            }
08.        }
09.    });
10.});