I create a new node in the tree, get its HTREEITEM
and call this line (I have a two columns tree):
GridCellJoinSet(CSize(2,1), 0, ItemGetVisibleIndexOf(hti));
What happens is very weird - it seems that the two cells in the row that I joined are being written one on top of the other...
Note that the two cells are of the type CExtGridCellString
, the left one has a text value, and the right one is empty, what I wanted was that when the left column becomes narrow, the text will flow to the right column’s cell.
I am using it in one row only (as you can see above: CSize(2,1)
)
Please fix.