-
Bug
-
Resolution: Duplicate
-
P4
-
7u25
-
None
-
last JDK 7
Mac Mountain Lion
IntelliJ IDEA
I'm trying to do a simple drag and drop example:
so I have some sources (ImageViews)
and an AnchorPane as a target
then
@FXML
void DragDetected(MouseEvent event) {
ImageView n = (ImageView) event.getSource();
Dragboard storeImage =n.startDragAndDrop(TransferMode.MOVE);
ClipboardContent content = new ClipboardContent();
content.putImage(n.getImage());
storeImage.setContent(content);
event.consume();
}
this is the error I have:
'application/x-java-rawimage' is not a valid UTI string. Cannot set data for an invalid UTI.
so I have some sources (ImageViews)
and an AnchorPane as a target
then
@FXML
void DragDetected(MouseEvent event) {
ImageView n = (ImageView) event.getSource();
Dragboard storeImage =n.startDragAndDrop(TransferMode.MOVE);
ClipboardContent content = new ClipboardContent();
content.putImage(n.getImage());
storeImage.setContent(content);
event.consume();
}
this is the error I have:
'application/x-java-rawimage' is not a valid UTI string. Cannot set data for an invalid UTI.
- relates to
-
JDK-8123666 Drag and Drop of custom data fails on Mac
-
- Closed
-