Вопрос

... and how did it happen (guessing allowed, of course :-)

@Override
public int convertChildIndexToModel(int modelIndex) {
    return getRowSorter() != null ? getRowSorter()
            .convertRowIndexToView(modelIndex) : modelIndex;
}

@Override
public int convertChildIndexToView(int viewIndex) {
    return getRowSorter() != null ? getRowSorter()
            .convertRowIndexToModel(viewIndex) : viewIndex;
}

and yeah, the idiot was me ;-)

Это было полезно?

Решение

calling convertRowIndexToView with modelIndex and vice-versa. Must be some copy-paste bug :)

Другие советы

Is it because you should be calling convertRowIndexToModel in convertChildIndexToModel and vice versa?

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top