Multiple Linked Trees in Grid in the same column

Hello, is there a way to link multiple trees in the same column? What I would like is to have tree1 linked to cell row1-column1, then have tree2 linked to cell row2-column1. Something like that scenario which is basically a per cell link rather than a per column link.

Thanks
Scott

the column type should be defined as a tree, but you can set the type of cells in the needed rows to a needed type.
For example:

<row id="bmw"> <cell image="folder.gif">M3</cell> <row id="bmw1"> <cell type="ed">325i</cell> <cell>30,800</cell> <cell>2.5L</cell> <cell>184</cell> <cell>19</cell> <cell>27</cell> </row> <row id="bmw2"> <cell image="leaf.gif">M3 Coupe</cell> <cell>47,100</cell> <cell>3.2L</cell> <cell>333</cell> <cell>16</cell> <cell>24</cell> </row> </row>

Thanks sematik. I’m not sure this solves my problem. I was able to place other types in a tree column, but not 2 trees in the same column. In order to link a grid, I need to call mygrid.setSubTree(tree, 2);. So how would I add tree2 to column 2 as well? mygrid.setSubTree(tree2, 2); will just override the first call to setSubTree.

oh, I apologize.
I understood you incorrectly.
I thought you were talking about treeGrid.

in case of subtree (“stree”): unfortunately it’s not available to add several subtrees in a column.