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

Webbroser Control

2 Answers 72 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
EAkbari
Top achievements
Rank 1
EAkbari asked on 16 Jul 2014, 01:44 PM
Hi,

we want to integrate the Kendo-UI Grid into MS-Access 2013. The browsercontrol should do the job and display the grid in my Access-Application. 
Like mentioned in other threads, i set the registry-values, so the browsercontrol should emulate ie in version 11. 

But the grid control does not work correctly. There are issues, when displaying the filter menu or grouping data by dragging the column header (drag & drop does not work). I tried some other controls like slider. It is not possible to drag the slider with mouse in Webbrowsercontrol.

Maybe anybody has a good idea or a good starting point to solve this problems.

Thanks.

2 Answers, 1 is accepted

Sort by
0
Daniel
Telerik team
answered on 18 Jul 2014, 08:59 AM
Hello,

The problem will occur because the browser reports support for pointer events but does not trigger them when using the browsercontrol. The possible solutions to avoid the problem are to:
  • clear the pointer events before including the Kendo scripts so that they are not detected:

    <script>
        window.PointerEvent = null;
        window.MSPointerEvent = null;
    </script>
  • force IE 9 compatibility mode:
    <head>
        <meta http-equiv="X-UA-Compatible" content="IE=9">


Regards,
Daniel
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
0
EAkbari
Top achievements
Rank 1
answered on 18 Jul 2014, 09:59 AM
Hi Daniel,

thanks for your very helpful answer. Now it works, you made my day!

Regards!
Tags
General Discussions
Asked by
EAkbari
Top achievements
Rank 1
Answers by
Daniel
Telerik team
EAkbari
Top achievements
Rank 1
Share this question
or