Won't Fix
Last Updated: 22 Jul 2015 13:31 by Eisa Baker
ADMIN
Telerik Admin
Created on: 16 Aug 2013 17:23
Category: TreeView
Type: Bug Report
5
TreeView: When Virtualized, adding new item in edit mode clears the DataContext of the control in the ItemEditTemplate of this new item.
Tree is Virtualized and bind to colelction of DataItems.
On a button click, we add new Dataitem with IsInEditMode = true (bound to IsInEditMode of the RadTreeViewItem).
The new Item is in edit mode but the textBox in the ItemEditTemplate has no DataContext so no actual editing  can be performed.

Scenario casn be solved with adding the item, then switch its editmode in dispatcher:
DataItem item = new DataItem() { Name = "Item Editable" };
             
            (this.tree.ItemsSource as ObservableCollection<DataItem>).Insert(0, item);

            Dispatcher.BeginInvoke(new Action(() =>
            {
                item.IsInEditMode = true;
            }), DispatcherPriority.Loaded);

The XAML team has recently reviewed this issue and will not be addressing it as at this time the team is focusing on the bugs impacting the highest number of developers. If you have encountered this issue and it is blocking for your work please contact us through the support ticketing system with details on your setup and a reference to this item.

2 comments
Eisa Baker
Posted on: 28 Aug 2013 01:24
lkj
Eisa Baker
Posted on: 28 Aug 2013 01:24
klj