Just to add... It seems like that when implementing the large tables DataPage model, to get the sort column to behave as expected the following is needed (applying the DataPage model to the pagedSortTable example).
public DataModel getDataModel() {
//if (dataModel == null) {
dataModel = new LocalDataModel(getRowsPerPage());
//}
return dataModel;
}
Which is not really ideal.

