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

Grid with drag & drop issue

2 Answers 139 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Cosmin
Top achievements
Rank 1
Cosmin asked on 02 Apr 2014, 03:21 PM
Hello,

I am using a kendo draggable over a grid so i can reorder the rows.
The code is similar to the following:
grid.table.kendoDraggable({
    filter: "tbody > tr",
    group: "gridGroup",
    threshold: 100,
     axis: "y",
    hint: function (e) {
        return $('<div class="k-grid k-widget"><table><tbody><tr>' + e.html() + '</tr></tbody></table></div>');
    }
});


Problem is, that inside the grid i have a column with textboxes and the focus for this has stopped working. Is there any way i could fix this?

Thank you,
Cosmin

2 Answers, 1 is accepted

Sort by
0
Accepted
Alexander Valchev
Telerik team
answered on 02 Apr 2014, 03:41 PM
Hello Cosmin,

To fix the issue you should use the ignore option. Please check the corresponding documentation for code sample:
Note: Latest internal build (which will be uploaded at the end of this week) contains a fix which addresses input focusing issues. Please wait till the end of week, download the latest internal build and give it a try.

Regards,
Alexander Valchev
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
0
Cosmin
Top achievements
Rank 1
answered on 03 Apr 2014, 09:45 AM
Thank you for your quick response. The ignore will more than suffice for now.
Tags
Grid
Asked by
Cosmin
Top achievements
Rank 1
Answers by
Alexander Valchev
Telerik team
Cosmin
Top achievements
Rank 1
Share this question
or