Hello,
Using SmartGWT 6.0 LGPL
I'm trying to perform a drag-reorder on a set of records, but on
listGrid.addRecordDropHandler(new RecordDropHandler() {
@Override
public void onRecordDrop(RecordDropEvent event) {
// UNCHANGED RECORD LIST
RecordList list = listGrid.getRecordList();
}
}
The records I get from listGrid are in the original order.
What's the tonic for getting the new order of records?
Thank you!
Using SmartGWT 6.0 LGPL
I'm trying to perform a drag-reorder on a set of records, but on
listGrid.addRecordDropHandler(new RecordDropHandler() {
@Override
public void onRecordDrop(RecordDropEvent event) {
// UNCHANGED RECORD LIST
RecordList list = listGrid.getRecordList();
}
}
The records I get from listGrid are in the original order.
What's the tonic for getting the new order of records?
Thank you!
Comment