Rico Tree Example #1

This example demonstrates a basic, pop-up tree control. Only one item is selected from the tree at a time. Data is from the Northwind customer table.

(selected customer id)

Rico.onLoad( function() {
  tree1=new Rico.TreeControl("tree1", "CustTree.php");
  tree1.atLoad();
  tree1.returnValue=function(newVal) { $('TreeValue1').value=newVal; };
});