Hello,
I did an update on my Telerik WinForms from 2013 Q3 to 2014 Q3.
And here is what happened:
There was a lot of SelectionChanging events on my grids and they were called like this:
private void gridXml_SelectionChanging(object sender, CancelEventArgs e)
{
DoSomething();
}
And after the update I noticed that all my grids had lost their SelectionChanging event and I couldn't select the events that I used before.
So I created a new SelectionChanging and noticed that it had a different parameter:
private void gridXml_SelectionChanging(object sender, Telerik.WinControls.UI.GridViewSelectionCancelEventArgs e)
{
}
Now I changed all my old SelectionChanging to this new one.
What I want to know if this happened because of the big gap on my updates or if it would have happened anyway on the version that this changed.
Thanks.
I did an update on my Telerik WinForms from 2013 Q3 to 2014 Q3.
And here is what happened:
There was a lot of SelectionChanging events on my grids and they were called like this:
private void gridXml_SelectionChanging(object sender, CancelEventArgs e)
{
DoSomething();
}
And after the update I noticed that all my grids had lost their SelectionChanging event and I couldn't select the events that I used before.
So I created a new SelectionChanging and noticed that it had a different parameter:
private void gridXml_SelectionChanging(object sender, Telerik.WinControls.UI.GridViewSelectionCancelEventArgs e)
{
}
Now I changed all my old SelectionChanging to this new one.
What I want to know if this happened because of the big gap on my updates or if it would have happened anyway on the version that this changed.
Thanks.