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

Update Problem

1 Answer 46 Views
AppBuilder Windows client
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Cihan
Top achievements
Rank 1
Cihan asked on 20 Dec 2012, 10:45 AM
Before the icenium graphite update all of my projects was working correctly but after the update click event firing twice suddenly. I don't get it why it up. After the update i select downgrade but notting fixed every event firing twice.

1 Answer, 1 is accepted

Sort by
0
Kristian D. Dimitrov
Telerik team
answered on 25 Dec 2012, 05:46 PM
Hi Cihan,

We were able to reproduce the issue inside Icenium simulator. On a real device your application should behave as expected. This issue is a bug in Icenium simulator and it has been logged into our bug tracking system. This bug will be fixed in our next public release. Fortunately there is a workaround you can use till then. Just add this script inside your code:

document.addEventListener("click", function(e){
                e.preventDefault();
                e.stopPropagation();
                return false;
                }, true);

I hope this helps.

Greetings,
kdimitrov
the Telerik team

Share feedback and vote for features on our Feedback Portal.
Want some Kendo UI online training - head over to Pluralsight.
Tags
AppBuilder Windows client
Asked by
Cihan
Top achievements
Rank 1
Answers by
Kristian D. Dimitrov
Telerik team
Share this question
or