To reproduce:
1. Create a XamDataTree with some nodes, set AllowEditing to true.2. Run and hit F2 to rename a node (but do not confirm by hitting Enter or clicking outside the TextBox).3. Alt-Tab away and then back.4. The TextBox is still there, the node is still in editing mode.
Instead of step 3, you can add a XamDockManager to the app, create a floating pane and from the node editor TextBox click into the floating pane. The TextBox does not disappear.
Questions:
1. Is this the intended behavior (I would expect a behavior similar to the windows explorer, Alt-Tab confirms the current value in the TextBox)?
2. If no, could you fix it please.
3. If yes, is there an easy way to achieve that Alt-Tab or clicking into a floating pane confirms the value in the TextBox and the node automatically leaves edinting mode?
Hello Tjark,
Thank you for your posts. I have been looking into them.
After researching the functionality from your first post, I can tell that this is the default behavior of the xamDataTree.
I have sent your Product Idea directly to our product management team. Our product team chooses new Product Ideas for development based on popular feedback from our customer base. Infragistics continues to monitor application development for all of our products, so as trends appear in requested ideas, we can plan accordingly.
We value your input, and our philosophy is to enhance our toolset based on customer feedback. If your idea is chosen for development, you will be notified at that time. Your reference number for this Product Idea is PI13070031.
If you would like to follow up on your Product Idea at a later point, you may contact Developer Support management via email. Please include the reference number of your Product Idea in the subject and body of your email message. You can reach Developer Support management through the following email address: dsmanager@infragistics.com
For your second post I think I am missing something from your scenario. Would you please attach a simple sample, that reproduces the issue, in order for me to be able to reproduce the issue and provide you with better support. Thank you in advance for the information.
Looking forward to hearing from you.
On a related note:If an ItemTemplate is set for the tree, I always get this error message in the debug window on entering edit mode:
System.Windows.Data Error: 40 : BindingExpression path error: 'Data' property not found on 'object' ''TextBox' (Name='')'. BindingExpression:Path=Data.Title; DataItem='TextBox' (Name=''); target element is 'TextBlock' (Name=''); target property is 'Text' (type 'String')
To reproduce, simply create a tree and set an ItemTemplate like this:
<ig:XamDataTree.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding Path=Data.Title}" /> </DataTemplate></ig:XamDataTree.ItemTemplate>
and edit a node while watching the debug window in VS.
The result is OK (the data is indeed changed), but the error message probably isn't intended.