Hi!
I created a property grid with the ultra tree (each property is a node on first level) and I have 2 columns (property title and value). The value is editable. If I configure the ultraTree.ColumnSettings.TabNavigation, then I navigate through each column (label and value). That's not what I want.
I want to navigate to the next celle value (like BelowCell in the ultraGrid). Is there a way to accomplish this ? In the same way, I want that the Enter key does the same thing. Is it possible ? I tried PerformAction(UltraTreeAction.NextCell, false, false) but nothing happens.
Best regards,
Benoit
As I said in my first message, I already tried this solution and it doesn't work as we want. The navigation goes to the label column, then to the column value.
Any other ideas?
Hello,
I am just checking about the progress of this issue. Did you solve your issue accordingly to the information that I provided you?
Let me know if you need any further assistance.
Thank you for using Infragistics Components.
Hello Francis,
You can allow tab navigation using the following code snipped:
ultraTree1.ColumnSettings.TabNavigation = Infragistics.Win.UltraWinTree.TabNavigation.NextCell;
If you want to enable the navigation also on the Enter key you should handle _KeyDown event and if the KeyCode is Enter you should set PerformAction(UltraTreeAction.NextCell, false, false)
Let me know if you have any further questions.