Is there an example of using tree2 with data from a database?
 
Example, I have the following tree:
 
+ A
+ B
+ C
 
When I expand "A", I need to send "A" as a parameter to a public method in my backing bean, which calls a method in a POJO that returns the record set "1, 2, 3".
 
- A
  - 1
  - 2
  - 3
+B
+C
 
The SQL in the POJO looks similar to:
 
SELECT child_value, child_label
FROM child_table
WHERE parent = "A"
 
 
Thoughts, suggestions or examples are greatly appreciated.
 
Thanks,
 
--Todd
 
 

Reply via email to