Is it possible to stuff an ultragrid inside an ultragrid cell?My users want essentially a tree view that looks like a data grid.
I could use a datagrid with two bands, but they want the second band to be on the same line as the first band, even if the second band has more then one row.It's kind a like a pivot grid, but with editable columns in the group columns. So the users want to see:
Hello Daryl,
Yes, you should be able to embed an UltraGrid in other UltraGrid’s cell. Actually, you can embed any control in a grid’s cell using UltraControlContainerEditor component. You may find additional information about this component in our online documentation here, or you can check “ControlContainerEditor” sample in our legacy samples browser.
Please let me know if you have any additional questions on this matter.
Yeah I can use that to get it to render the second grid, but the second grid is just an image and the users can't interact.I tried to make it the render control and the edit control but I got the following error:The EditingControl and the RenderingControl cannot be the same instance.
Yes, this is expected behavior. You should use two grids in control container editor – one for rendering control and other one for editing control. Attached is a small sample project showing how to embed an UltraGrid in a cell of other UltraGrid.
Please let me know if you have any further questions.
Cool Beans, got it working. thanks!