Questions tagged [kendo-draggable]

A component of the Kendo UI framework.

Draggable is a Kendo UI () component.


Related tags

16 questions
8
votes
2 answers

KendoUI connect draggable to sortable

Is there any way that I can connect KendoUI draggable item to be added to KendoUI sortable list as the example with jQueryUI here: http://jqueryui.com/draggable/#sortable. I'm hitting my head for a day with this and its becoming medium funny. Should…
Emil Dimitrov
  • 109
  • 1
  • 4
1
vote
1 answer

How to Drag an element and drop into a kendoSortable List?

I am trying to drag an element from out site of kendoSortable and drop it into kendoSortable. I set connectWith property of kendoSortable. But it`s not working. In Kendo UI demo i did not find this kind of example. Here is my Code…
Hasanuzzaman
  • 1,822
  • 5
  • 36
  • 54
1
vote
0 answers

Kendo UI Dataviz diagram position shape on drop event

I have a webapp set up that I use a tree view to drag file names from and drop them on a diagram to use as a visual processing system (ETL). I have a working system and I pass the X and Y coordinates (from drop event) to the datasource (item.X,…
mabossert
  • 118
  • 1
  • 10
0
votes
1 answer

How to highlight background color of kendo grid row while dragging in angular?

I want to highlight the background of the row while dragging in Kendo-grid Angular. which CSS class should I use to change it on drag.
Karthikeyan Vellingiri
  • 1,270
  • 1
  • 17
  • 26
0
votes
1 answer

dataItem(element) returns incorrect item inside of KendoDraggable - KendoUI JQuery

I have a draggable defined on kendo grid rows like: $(grid.element).kendoDraggable({ filter: "table > tbody > tr.grid-row.k-master-row", group: "grid-items", hint: function (element) { grid.collapseRow(element); …
qubits
  • 1,227
  • 3
  • 20
  • 50
0
votes
0 answers

Kendo Draggable and DropTarget not working

I'm trying to let the user drag list items to another unsorted list. I can "pick up" the list items, so the Draggable seems to work but when I release them above the DropTarget, they do not get added. I've added some events to check if both the…
0
votes
1 answer

Kendo Drag and Drop from source to destination and vice versa

I have implemented kendo drag drop functionality (drag from source and drop to destination), but now i want to apply the drag and drop in vice versa condition also (drag from destination and drop to source), i.e drag and drop from both. Is there any…
0
votes
0 answers

KendoUI grid with draggable only works when I have developer tools open

I've created a nice little KendoUI grid with drag and drop. It works great... as long as I have the developer tools open. Any idea why this would work with the dev tools open, but doesn't work at all with just using the browser? Edit to add the…
TGtin
  • 1
  • 1
0
votes
1 answer

SVG kendodraggable

Does anyone here know how to make kendodraggable work on SVG? I tried already but things just dont seem to work as I expected. $('#image').kendoDraggable({ hint: function (element) { return element.clone(); …
confused
  • 179
  • 12
0
votes
1 answer

Is it possible to drag row outside kendo grid and sort within at same time?

I'm able to drag rows within the kendo ui grid. Seperately able to drag rows outside the grid to another html element. Is it possible to do both at same time? For within grid: Draggable within the grid: grid.table.kendoSortable({ …
roro
  • 193
  • 3
  • 16
0
votes
1 answer

Is it possible to drag row outside kendo grid?

I'm filling up the kendo grid with a couple of rows and want to implement drag/drop functionality between the grid and other html components. I can find a lot of resources telling how to drag/drop/sort rows inside a grid, even from one grid to…
roro
  • 193
  • 3
  • 16
0
votes
1 answer

How to get series data on drag event in kendo UI

In Kendo UI whenever we use drag event we can get screen x and y positions but how to get the series/datasource information in Kendo UI chart(line chart). In the below code, I am highlighting some information in line char(time series) using drag…
0
votes
2 answers

Drag and drop row on KendoUI Grid with AngularJs

How can I make a row in a KendoUI Grid draggable with AngularJs? The documentation says you have to initialize the draggable component with a filter ie "tbody > tr", but I don't understand how to apply the kendo-draggable directive on just the…
nitech
  • 1,822
  • 3
  • 21
  • 35
0
votes
1 answer

Kendo UI: How to drag and drop multiple items from kendo ui grid to tree?

I am using kendo ui grid and tree in a cshtml page and want to drag and drop multiple rows from the grid to the tree. I am able to drag and drop a single row from the grid to the tree, but for multiple items, same approach does not work. Here are my…
0
votes
2 answers

Kendo Grid: Drag Drop scrolls to top after drop

I implemented drag&drop for a grid like this: var mainGrid = $("#grid").kendoGrid({ dataSource: mainDataSource, columns: ["id", "name", "phone"], scrollable: true, editable: true, navigatable: true, height:…
1
2