<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" ?>
<window title="treeview test"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        xmlns:html="http://www.w3.org/1999/xhtml"
        orient="vertical"
        onload="load()"
>
<script type="application/x-javascript" src="script.js" />
<script type="application/x-javascript" src="datas.js" />

<tree flags="dont-build-content" flex="1" id="thetree">
	<treecols>
		<treecol id="nom"  label="nom" primary="true" flex="1" />
		<treecol id="prenom" label="prenom" flex="1"/>
	</treecols>
	<treechildren/>
</tree>

</window>