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

Draggable not working in IE 11

1 Answer 255 Views
Drag and Drop
This is a migrated thread and some comments may be shown as answers.
Torben
Top achievements
Rank 1
Torben asked on 27 Aug 2018, 07:26 AM

Hello,

I have problems getting draggable to work in IE 11.

Example here:

https://dojo.telerik.com/OVeseMiQ/6

It is working in the latest version of Firefox and Chrome and also Edge.

Not sure if it's a kendo issue or maybe a JQuery problem.

Can you help ?

 

1 Answer, 1 is accepted

Sort by
0
Accepted
Ivan Danchev
Telerik team
answered on 29 Aug 2018, 05:39 AM
Hello Torben,

For the draggable functionality to work in IE both the start and move events need to be prevented in the dataBound event handler:
dataBound: function (e) {
    this.selectable.userEvents._events.move = null; //disable marquee
    this.selectable.userEvents._events.start = null;
}

We have a KB article that demonstrates this, you can find it here.

I added that change to the dojo example you posted: modified example.

Regards,
Ivan Danchev
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
Drag and Drop
Asked by
Torben
Top achievements
Rank 1
Answers by
Ivan Danchev
Telerik team
Share this question
or