While I can easily get dropped records on a List Grid via:
myListGrid.addRecordDropHandler(new RecordDropHandler() {
@Override
public void onRecordDrop(RecordDropEvent event) {
ListGridRecord[] records = event.getDropRecords();
//dropped records are now in the "records" variable;
}
});
I can not get them the same way on a TileGrid.
Is there something I miss? How can I get dropped records on a TileGrid ?
myListGrid.addRecordDropHandler(new RecordDropHandler() {
@Override
public void onRecordDrop(RecordDropEvent event) {
ListGridRecord[] records = event.getDropRecords();
//dropped records are now in the "records" variable;
}
});
I can not get them the same way on a TileGrid.
Is there something I miss? How can I get dropped records on a TileGrid ?
Comment