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

RadGrid event OnSelectedIndexChanged don't work after 2010.2.826

10 Answers 169 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Christiano
Top achievements
Rank 1
Christiano asked on 27 Aug 2010, 06:00 PM
All My RadGrid event SelectedIndexChanged don't work after 2010.2.826! Anybody can help me?

10 Answers, 1 is accepted

Sort by
0
Peter
Top achievements
Rank 1
answered on 27 Aug 2010, 07:14 PM
i am having the same problem. workes with 2010.2.713.35 an older versions. with 826

OnSelectedIndexChanged

 is not fired. I am using EnablePostBackOnRowClick="true"he Masterpag and a
There is an AjaxManager in a Masterpage and an AjaxManagerProxy in the page handling
the Grids events.

did a quick workaround, but it is not how it should work.

protected override void RaisePostBackEvent(IPostBackEventHandler source, String eventArgument)
    switch (eventArgument)
     {
        ///...... handling other events 
        default:
            if (eventArgument.StartsWith("RowClick"))
            {
                FillDetail(Convert.ToString(RadGrid1.SelectedValue)); 
            }
            break;
     }
      base.RaisePostBackEvent(source, eventArgument);
}


regards,
peter
0
Christiano
Top achievements
Rank 1
answered on 27 Aug 2010, 07:56 PM
Thank Peter, your solution really work, but i have too much Grids in my application to change one by one. i hope than the Tererik Guys resolve this problem in the next hotfix.
0
Accepted
Rosen
Telerik team
answered on 30 Aug 2010, 07:49 AM
Hi guys,

It seems that there was an error during the uploading process of the Q2 2010 SP1 release, causing not up-to-date files to be uploaded. However, we have already address this, therefore, please download the files again and see if this makes any difference in the observed behavior.

Please excuse us for the inconvenience.

Kind regards,
Rosen
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
Peter
Top achievements
Rank 1
answered on 30 Aug 2010, 09:57 AM
downloaded the dlls again......no difference, event is still not fired.

seems also that the change date of the dll in the "dll and skins" package is older than from the one i downloaded on friday.

regards,
peter
0
Christiano
Top achievements
Rank 1
answered on 30 Aug 2010, 01:55 PM
I downloaded today the dlls again and this time is working.
Thanks Rosen 


0
Peter
Top achievements
Rank 1
answered on 30 Aug 2010, 04:35 PM
downloaded them again, now it works,
thanks
peter
0
Rudá Cunha
Top achievements
Rank 2
answered on 12 Sep 2010, 03:28 PM
I downloaded the version 2010.2.831.40 and work!

Tranks!
0
improwise
Top achievements
Rank 1
Iron
Iron
answered on 17 Sep 2010, 11:42 AM
The handling of this makes me worried. First a faulty release was made, no problem, anyone can make a misstake or two. Then the problem obviously was detected, and a new version was released. But wait, no, it wasn't a new release that was released, instead it seem to be a new build, which was released under the same name/date/version as the previous one, without and kind of mentioning of this, which if true, doesn't feel acceptable at all.

What this meant for us:

We didn't have time to upgrade when the new version was released (the first time) but we downloaded the installer. Today we decided it was time, and, as always, before upgrading, we had a look if we had the latest version downloaded which we had (or at least we thought we had). After upgrading we quickly began to see problems, like the ones described here, and after perhaps an hour of error searching, we found this thread. Now we have installed, error searched, uninstalled, installed again.It's now working again, but all in all, we spent more than 3 hours on this. Also, where is it mentioned that these problems were detected, ie so that other customer could know that they perhaps had faulty software in their production environment in case they upgraded before the new build was released?

So Telerik, please don't push out new builds that are disguised as old ones, it creates a lot of problems and risks for us customers.
0
Sebastian
Telerik team
answered on 17 Sep 2010, 01:02 PM
Hello guys,

I understand your concerns and deeply apologize for the inconvenience this discrepancy may caused you. As my colleague Rosen explained, there was a temporary issue with the uploading of the Q2 2010 SP1 release which made available a preliminary AJAX controls build. The problem was addressed a couple of hours later and that is why the proper upload has the same version date.

In this line of thoughts, you may be happy to know that we currently consider exposing the latest internal builds (LIB) of our AJAX controls to be exposed (through a configuration option) as automatic updates via the AJAX VSX update wizard. Thus when an important fix is included in LIB, you can be automatically prompted whether you want to download and install it (the release notes of the build will also be easily accessible). I will be happy to hear your comments/thoughts on this, they will influence our final decision.
 
Best regards,
Stefan Rahnev,
Telerik Unit Manager, ASP.NET division

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
gezim
Top achievements
Rank 1
answered on 25 Mar 2011, 10:55 AM
Hi All, I want to know how to create an event to binding flags where I have remove automatically an row with RemoveAt function for example:
 if(RadMessageBox.Show("Something"),Text,MessageButtons.OK)==DialogResult.OK)
{
     myGridView.Rows.RemoveAt(myGridView.CurrentRow.Index);
}
Tags
Grid
Asked by
Christiano
Top achievements
Rank 1
Answers by
Peter
Top achievements
Rank 1
Christiano
Top achievements
Rank 1
Rosen
Telerik team
Rudá Cunha
Top achievements
Rank 2
improwise
Top achievements
Rank 1
Iron
Iron
Sebastian
Telerik team
gezim
Top achievements
Rank 1
Share this question
or