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

EditEnded Event

1 Answer 59 Views
DataForm
This is a migrated thread and some comments may be shown as answers.
Carlo
Top achievements
Rank 1
Carlo asked on 31 Jan 2017, 10:00 AM

Hello,

why when i use the EditEnded Event i have not the item in the events args?

All work fine whit AddedItem and DeletedItem Events.

 

Thank you and Regards.

1 Answer, 1 is accepted

Sort by
0
Stefan Nenchev
Telerik team
answered on 02 Feb 2017, 12:08 PM
Hello Carlo,

You can get the item through the sender:

private void dataForm_EditEnded(object sender, Telerik.Windows.Controls.Data.DataForm.EditEndedEventArgs e)
       {
           var currentItem = (sender as RadDataForm).CurrentItem;
       }

If it does not help, please share more information on what you are trying to achieve so I can suggest a possible approach.

Regards,
Stefan Nenchev
Telerik by Progress
Want to extend the target reach of your WPF applications, leveraging iOS, Android, and UWP? Try UI for Xamarin, a suite of polished and feature-rich components for the Xamarin framework, which allow you to write beautiful native mobile apps using a single shared C# codebase.
Tags
DataForm
Asked by
Carlo
Top achievements
Rank 1
Answers by
Stefan Nenchev
Telerik team
Share this question
or