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…
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…
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,…
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);
…
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…
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…
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…
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();
…
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({
…
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…
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…
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…
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…
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:…