This is a migrated thread and some comments may be shown as answers.

IsInEditMode calls EditStarted event sometime and sometimes not.

1 Answer 41 Views
TreeView
This is a migrated thread and some comments may be shown as answers.
Latha
Top achievements
Rank 1
Latha asked on 17 Dec 2012, 05:39 AM
Hi Team

The below code is used in IsInEditMode. I tried to replicate the scenario that when the EditStarted event is fired and not fired.
After launching the tree view, when i try to edit the node. I am able to edit the node. After expanding the node.the node can not be edited. That time EditStarted event event is not fired. During the expanding, web service call is done to bind the child items for that node. Can you provide your comments. The current verion of control is 2011.2.712.1040

 public bool IsInEditMode
        {
            get { return isInEditMode; }
            set
            {
                if (this.isInEditMode != value)
                {
                    isInEditMode = value;
                    this.OnPropertyChanged("IsInEditMode");
                }
            }
        }

1 Answer, 1 is accepted

Sort by
0
Pavel R. Pavlov
Telerik team
answered on 19 Dec 2012, 04:07 PM
Hello Latha,

I tried to reproduce your issue with our latest release but it seems that the code works as expected. Can you please take a look at the attached project and check if I have missed something? Also please make sure you're using our latest dlls in order to take advantage of our latest fixes and features.

Regards,
Pavel R. Pavlov
the Telerik team

Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.

Tags
TreeView
Asked by
Latha
Top achievements
Rank 1
Answers by
Pavel R. Pavlov
Telerik team
Share this question
or