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

$telerik doesn't work in IE8

1 Answer 23 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Michael
Top achievements
Rank 1
Michael asked on 31 Oct 2012, 07:10 PM
I created two functions to expand and collapse a row in a RadGrid control.
It works well in IE9, Firefox and Chrome, but it fails in IE8.
The $telerik object returns as undefined.
v 2012.1.411.35

function rgOption_Expanded(sender, args) {
    
    var item = args.get_item();
    var label = $telerik.findElement(item.get_element(), "options");
    label.style.display = "block";


}
function rgOption_Collapsed(sender, args) {


    var item = args.get_item();
    var label = $telerik.findElement(item.get_element(), "options");
    label.style.display = "none";


}

1 Answer, 1 is accepted

Sort by
0
Eyup
Telerik team
answered on 05 Nov 2012, 03:10 PM
Hello Michael,

I have tried the provided code sample and it works correctly on all versions above and including IE7. Could you please enable your script debugging and see whether the item is accessed properly?

Please open a support ticket to send us a sample runnable application demonstrating the problematic appearance or provide us the exact steps to reproduce the issue. Thus, we will be able to further analyze the issue and provide a proper solution.

Kind regards,
Eyup
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Grid
Asked by
Michael
Top achievements
Rank 1
Answers by
Eyup
Telerik team
Share this question
or