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

Issues Sorting & Filtering - Windows 8 with IE 10

1 Answer 36 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Randy
Top achievements
Rank 1
Randy asked on 17 Jun 2013, 05:31 PM
Hi,

We are having issues with the Grid sorting and filtering in Windows 8 and IE 10 environment. Seems to work fine in Window 7, IE 10 environment. We using AJAX controls  Q1 2013, .net 3.5. The grid is wrapped in an update panel and displayed in a .aspx page, inside an IFRAME; any suggestions?

Thank you very much!

Randy Sullivan

1 Answer, 1 is accepted

Sort by
0
Maria Ilieva
Telerik team
answered on 20 Jun 2013, 12:42 PM
Hi Randy,

Could you please try to disable the ajax on the page and verify if this makes any difference? If the RadGrid's functionality works porperly with regular postback try to call the following client script in the PageRequestmanager endRequest event:
<script type="text/javascript" language="javascript">
              
                Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
      
                function EndRequestHandler(sender, args)
                {
                   document.documentElement.focus();
                }
</script>

I hope this helps.

Regards,
Maria Ilieva
Telerik
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 the blog feed now.
Tags
Grid
Asked by
Randy
Top achievements
Rank 1
Answers by
Maria Ilieva
Telerik team
Share this question
or