Drag and Drop with touch devices doesn't show drop location

Hi,

I have a grid with drag and drop capabilities enabled, when I'm dragging on touch devices the over row is not changing the color.

Touch devices


Desktop (works fine)




Grid definition:
@(Html.EJ().Grid<object>("LineupGrid1")
.Datasource(ds => ds.Json((IEnumerable<object>)ViewBag.Lineup1))
.EnableTouch(true)
.ClientSideEvents(eve => { eve.RowDrop("rowDrop").DataBound("dataBound").RowDrag("rowDrag").Create(""); })
.AllowRowDragAndDrop()
.RowDropSettings(drop => drop.DropTargetID("#lineupsdroparea"))
.Columns(col =>
{
col.Field("Id").IsPrimaryKey(true).Visible(false).Add();
col.Field("CurrentLineUp").Visible(false).Add();
col.Field("").HeaderText("Taxi").Width("60")
.Template("")
.Add();
col.Field("Name").HeaderText("Driver").Add();
col.Field("TimeInLineUp").HeaderText("Time").Width("50").Add();
col.Field("").HeaderText("Actions").Width("75")
.Template("")
.Add();
})
)

1 Reply

SS Seeni Sakthi Kumar Seeni Raj Syncfusion Team July 19, 2017 12:16 PM UTC

Hi Ryan,  
 
Thanks for contacting Syncfusion Support.  
 
We have created a new support incident under your directtrac account for tracking the reported query. Please visit the following link for further follow-up on this query. 
 
 
Regards,  
Seeni Sakthi Kumar S. 


Loader.
Up arrow icon