Skip to content
Snippets Groups Projects
Commit 2fe31ac2 authored by srosse's avatar srosse
Browse files

OO-1754: prevent sorting columns which are flagged as not sortable, add a...

OO-1754: prevent sorting columns which are flagged as not sortable, add a dummy compare method to the static column instead of the AssertException
parent bd32cc0e
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,6 @@ package org.olat.core.gui.components.table; ...@@ -28,7 +28,6 @@ package org.olat.core.gui.components.table;
import org.olat.core.gui.render.Renderer; import org.olat.core.gui.render.Renderer;
import org.olat.core.gui.render.StringOutput; import org.olat.core.gui.render.StringOutput;
import org.olat.core.logging.AssertException;
/** /**
* Description:<br> * Description:<br>
...@@ -108,8 +107,10 @@ public class StaticColumnDescriptor implements ColumnDescriptor { ...@@ -108,8 +107,10 @@ public class StaticColumnDescriptor implements ColumnDescriptor {
/** /**
* @see org.olat.core.gui.components.table.ColumnDescriptor#compareTo(int, int) * @see org.olat.core.gui.components.table.ColumnDescriptor#compareTo(int, int)
*/ */
@Override
public int compareTo(final int rowa, final int rowb) { public int compareTo(final int rowa, final int rowb) {
throw new AssertException("staticcolumndescriptor was called to be sorted, but did not offer to be sorted"); //dummy order but fixed
return rowb - rowa;
} }
/** /**
......
...@@ -525,23 +525,21 @@ public class Table extends AbstractComponent { ...@@ -525,23 +525,21 @@ public class Table extends AbstractComponent {
protected void resort() { protected void resort() {
if (isSortingEnabled() && sortColumn < getColumnCount()) { if (isSortingEnabled() && sortColumn < getColumnCount()) {
ColumnDescriptor currentSortingCd = getColumnDescriptor(sortColumn); // we sort after this ColumnDescriptor currentSortingCd = getColumnDescriptor(sortColumn); // we sort after this
// column descriptor if(currentSortingCd != null && currentSortingCd.isSortingAllowed()) {
// notify all nonactive ColumnDescriptors about their state // column descriptor
int cdcnt = getColumnCount(); // notify all nonactive ColumnDescriptors about their state
for (int i = 0; i < cdcnt; i++) { int cdcnt = getColumnCount();
ColumnDescriptor cd = getColumnDescriptor(i); for (int i = 0; i < cdcnt; i++) {
if (cd != currentSortingCd){ ColumnDescriptor cd = getColumnDescriptor(i);
cd.otherColumnDescriptorSorted(); if (cd != currentSortingCd){
cd.otherColumnDescriptorSorted();
}
} }
currentSortingCd.sortingAboutToStart();
Collections.sort(sorter, new TableComparator(currentSortingCd, sortAscending));
} else {
log.error("Sort column not found:" + sortColumn + " in columns: " + columnOrder, null);
} }
if (currentSortingCd == null){
throw new RuntimeException("cannot find columndesc for column "
+ sortColumn
+ " in sorting process, maybe you have set the tabledatamodel before the columndescriptors?");
}
currentSortingCd.sortingAboutToStart();
Collections.sort(sorter, new TableComparator(currentSortingCd, sortAscending));
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment