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

[Solved] OnChange event not fired in IE9 beta

1 Answer 92 Views
Editor
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
nnk
Top achievements
Rank 1
nnk asked on 10 Jan 2011, 08:46 PM
I tried the demo http://demos.telerik.com/aspnet-mvc-beta/editor/clientsideevents

The onChange event does not fire. Any leads on this please?

1 Answer, 1 is accepted

Sort by
0
nnk
Top achievements
Rank 1
answered on 11 Jan 2011, 11:35 PM
This seems to be an issue only in IE9 beta and not in IE9.

However, the following workaround seems to do the trick..
// Workaround for Telerik onChange event not getting fired on IE9 beta
if ($.browser.msie && $.browser.version === '9.0')
{
    $($('.Editor').data('tEditor').body).blur(function ()
    {
     //Do the needful
    });
}
Tags
Editor
Asked by
nnk
Top achievements
Rank 1
Answers by
nnk
Top achievements
Rank 1
Share this question
or