I have a treeview where there are multiple cells for each node. So, the viewstyle is set to Grid. I've hidden the border. I would like to have the text in a cell be displayed in a Textbox when activated for editing. Right now, I can edit, but not in a textbox.
How do I get the column/cell to show a textbox in edit mode?
UltraTree.ColumnSettings.AllowCellEdit = AllowCellEdit.Full;UltraTree.Iverride.CellClickAction = CellClickAction.EditCell;
Yes, I've set both of those properties, and I am able to edit the cells. But, I'd like to edit the cells in a text box. In other words, ther is no border around the cell in edit mode.
I've disabled the cell borders in the grid as follows:
e.ColumnSet.BorderStyleCell = UIElementBorderStyle.None;
How can I get a textbox in a cell in edit mode?