this.listGrid.setHeight(250);
this.listGrid.setCanReorderRecords(true);
// TODO: Change cursor to hand or something like that when user hovers over a record in the grid.
this.listGrid.setLoadingMessage(MSG.common_msg_loading());
this.listGrid.setEmptyMessage(MSG.common_msg_noItemsToShow());
this.listGrid.addRecordDropHandler(new RecordDropHandler() {
@Override
public void onRecordDrop(RecordDropEvent event) {
notifyListOrderChangedHandlers();
}
});