Hi There,
Is the following possible ? I have been reading around and did not find anything similar so far.
Thanks!
Hi,
What, specifically, are you asking about?
It looks like what you want to do is have a grid inside a grid. This is possible - you can use the new UltraControlContainerEditor to embed any control you want into a grid cell. Do you want this for the entire column or just one cell like you have shown here?
If it just for one cell, then the tricky part of this will be the column's DataType? How will you provide a single string of text for all of the cells in the column except one where you need to supply a whole grid of data?
If it's for every cell in the column, then this could be pretty inefficient, since every cell in the column will have to bind a WinGrid to it's data every time the cell paints.
Hi Mike,
Thanks for your anwer.
Each cell can have its own grid. The text representation of a grid only needs to be shown once a grid is collapsed (in contrary to what is shown on the picture).
Are you saying that the databinding takes place whenever a cell is painted ? Can you please explain ?