HI, I am wondering if there is an example by using UltraTree and UltraGridCan we add a UltraGrid as a child node to a Tree Node.
I am basically looking into some functionality where the headers act like a Tree Node that can be collapsed and the body is a ultraGrid like structure. I cannot use a Grid solution only since the data for the header and the body has no relation.
- SomeText1 CheckBox Text Box ComboEditor CheckBox Text Box ComboEditor CheckBox Text Box ComboEditor CheckBox Text Box ComboEditor
- SomeText2
CheckBox CheckBox ComboEditor TextBox CheckBox CheckBox ComboEditor TextBox CheckBox CheckBox ComboEditor TextBox CheckBox CheckBox ComboEditor TextBox CheckBox CheckBox ComboEditor TextBox
ThanksAJ
Hi AJ,
I'm not sure I understand your question. What exactly are you trying to go here that you can't do with the WinTree alone? There's no way to embed a WinGrid within a tree. But the tree itself supports columns, so you could do what you have here with just a tree, you don't need a WinGrid.
Does this mean that we can add a ComboEditor as a valid data type in the ColumnSet?
What I want is for my tree to look like is:
-Parent 0
- Child 0
bool string float ComboEditor
Is this possible? I've been having a difficult time implementing it
Hi Mike, Thanks for getting back to me.
Like my previous post with the example, I am trying to accomplish a tree like structure with collapsing header nodes. The Child nodes under a header section differ. They are not consistent. The child to the header node mimics like a grid. Each column (Cell) is a Control (e.g, Checkbox, combo, text box, etccc). The number of rows is not finite. My initial thought was can a (UserControl) be added as a child node? I guess this is not possible.
Do let me know if I am not clear in my explanationThanksAditya