This question is locked. New answers and comments are not allowed.
BlogReader
Top achievements
Rank 1
BlogReader
asked on 29 Apr 2009, 11:36 PM
Is there any event that is raised when the user reorders columns from the UI?
4 Answers, 1 is accepted
0
Accepted
Hello BlogReader,
Please use the CollectionChanged event of the RadGridView.Columns collection
e.g
Sincerely yours,
Pavel Pavlov
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Please use the CollectionChanged event of the RadGridView.Columns collection
e.g
this
.RadGridView1.Columns.CollectionChanged += new System.Collections.Specialized.NotifyCollectionChangedEventHandler(Columns_CollectionChanged);
Sincerely yours,
Pavel Pavlov
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
BlogReader
Top achievements
Rank 1
answered on 30 Apr 2009, 05:54 PM
Is there any way I can set the name of the event handler in Xaml?
0
Hello BlogReader,
Unfortunately there is no way to subscribe to the CollectionChanged event in XAML .
Please let me know if the previously suggested approach does not fit your scenario. In such case I may need to know more about the behavior you are trying to achieve in order to provide a workaround.
Kind regards,
Pavel Pavlov
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Unfortunately there is no way to subscribe to the CollectionChanged event in XAML .
Please let me know if the previously suggested approach does not fit your scenario. In such case I may need to know more about the behavior you are trying to achieve in order to provide a workaround.
Kind regards,
Pavel Pavlov
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
BlogReader
Top achievements
Rank 1
answered on 04 May 2009, 05:40 PM
No. I can use the backend to subscribe to the event. I was asking merely for informational purposes. I have marked the appropriate post as the answer.