How to Bind a Flash CFTREE to a Flash CFGRID
CFTREE and CFGRID are both Flash elements used in Adobe ColdFusion, the programming language for creating dynamic Web pages. CFTREE organizes data in a hierarchical tree structure, while CFGRID organizes it in a grid. However, you can mix the two. If you want to turn one element of your grid into a tree, you can do so by binding the CFTREE to the CFGRID. Binding is done by “nesting” the elements in your code.
Instructions
-
-
1
Open your ColdFusion code and scroll to the CFGRID you want to use.
-
2
Find the grid element you want to turn into a CFTREE.
-
-
3
Encase that element in CFTREE tags. Put “<cftree>” at the beginning of the element and “</cftree>” at the end. Because this is all still within the CFGRID code, this will bind the element as a CFTREE within the CFGRID.
-
1