A temp fix is to:
<replace-with
class="your.version.of.DragAndDropManagerImpl">
<when-type-is
class="gwtquery.plugins.draggable.client.DragAndDropManager" />
</replace-with>
and change line 168 to:
if (e == null || e.getTypeInt() == ONMOUSEDOWN || e.getTypeInt() == ONTOUCHSTART) {
and add the static import:
import static com.google.gwt.user.client.Event.ONTOUCHSTART;
A temp fix is to:
and change line 168 to:
and add the static import:
import static com.google.gwt.user.client.Event.ONTOUCHSTART;