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

Event on Row Delete

3 Answers 180 Views
GridView
This is a migrated thread and some comments may be shown as answers.
JAS J
Top achievements
Rank 1
JAS J asked on 19 May 2010, 03:08 PM
Hi< Which event do I subscribe to to know when a row has been deleted?

thanks,
Jas

3 Answers, 1 is accepted

Sort by
0
Rossen Hristov
Telerik team
answered on 19 May 2010, 03:34 PM
Hello JAS J,

The two events your are looking for are Deleting and Deleted.

Kind regards,
Ross
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
JAS J
Top achievements
Rank 1
answered on 19 May 2010, 04:55 PM
hmm... which object fires these events?

thanks,
Jas
0
Accepted
Maya
Telerik team
answered on 19 May 2010, 06:32 PM
Hi JAS J,

The Deleted and Deleting  events are members of the RadGridView class. They can be defined in xaml, like :

<telerik:RadGridView Name="playersGrid"
                     ItemsSource="{Binding Players}"
                     Deleted="playersGrid_Deleted"
                     Deleting="playersGrid_Deleting" >         
                 
</telerik:RadGridView>


You can find more information about all the members of that class in our online documentation.

 
Regards,
Maya
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
GridView
Asked by
JAS J
Top achievements
Rank 1
Answers by
Rossen Hristov
Telerik team
JAS J
Top achievements
Rank 1
Maya
Telerik team
Share this question
or