Hi, I would like to know if the UltraWinTree has a method similar to the grid's UpdateData so I can commit changes to the node of the tree during the AfterCellExitEditMode. I'm doing this because I would not like user to be able to update multiple columns of the tree and then hit escape twice and undo all their changes. Thanks
Hi,
There's an Update method on the UltraTreeNode, just like on the UltraGridRow. For some reason there's no UpdateData to update all rows in tree with pending changes, but I don't think you need that for you want to do, anyway.
Thanks Mike, but I've tried calling Update and also PerformAction(UltraTreeAction.ExitEditModeOnCellSaveChanges) but to no avail. The only way I get the data to be committed is if I move to another row or move focus out of the tree. Any other recommendations?