我正在使用 GWT 的 CellTable。当用户单击某个列标题进行排序时,我想禁用排序,直到检索到数据。为此,我使用以下代码:
private void setHeadersSortable(boolean enable) {
if (_table.getColumnCount() > 0) {
if (enable) {
// enable only columns specified in _sortPropertyByColumn
Iterator<Column<T, ?>> sortableColsIter = _sortPropertyByColumn.keySet().iterator();
while (sortableColsIter.hasNext()) {
sortableColsIter.next().setSortable(enable);
}
} else {
// disable all columns
for (int i = 0; i < _table.getColumnCount(); i++) {
_table.getColumn(i).setSortable(enable);
}
}
_table.redrawHeaders();
}
}
这一切在 Firefox 和 IE 中都可以正常工作,但在 chrome 中却不行。
似乎在 Chrome 中,它在 _table.redrawHeaders() 中失败了。在抛出 IndexOutOfBoundsException 的 gwt 类 AbstractHasData 中调用失败
protected void checkRowBounds(int row) {
if (!isRowWithinBounds(row)) {
throw new IndexOutOfBoundsException("Row index: " + row + ", Row size: " + getRowCount());
}
}
protected boolean isRowWithinBounds(int row) {
return row >= 0 && row < presenter.getVisibleItemCount();
}