Swing/ClearSortingState のバックアップ(No.2)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/ClearSortingState へ行く。
- 1 (2007-08-27 (月) 12:33:13)
- 2 (2007-08-27 (月) 14:45:58)
- 3 (2007-08-27 (月) 18:21:50)
- 4 (2008-04-11 (金) 18:28:37)
- 5 (2008-09-15 (月) 13:50:46)
- 6 (2013-02-01 (金) 11:33:28)
- 7 (2013-07-26 (金) 01:30:04)
- 8 (2015-01-29 (木) 15:38:21)
- 9 (2015-07-23 (木) 17:07:28)
- 10 (2016-01-12 (火) 17:54:13)
- 11 (2017-04-04 (火) 14:17:08)
- 12 (2017-06-23 (金) 12:52:26)
- 13 (2018-06-26 (火) 13:10:57)
- 14 (2020-06-09 (火) 23:50:51)
- 15 (2021-11-25 (木) 05:39:17)
TITLE:TableRowSorterのSortKeysをクリアする
TableRowSorterのSortKeysをクリアする
編集者:Terai Atsuhiro
作成日:2007-08-27
更新日:2021-11-25 (木) 05:39:17
概要
JDK 6 で導入されたTableRowSorterでの行ソートを、テーブルヘッダの「Shift+クリック」でクリアします。
#screenshot
サンプルコード
final TableRowSorter<TableModel> sorter = new TableRowSorter<TableModel>(model);
table.setRowSorter(sorter);
table.getTableHeader().addMouseListener(new MouseAdapter {
@Override public void mouseClicked(MouseEvent e) {
JTableHeader h = (JTableHeader) e.getSource();
TableColumnModel columnModel = h.getColumnModel();
int viewColumn = columnModel.getColumnIndexAtX(e.getX());
int column = columnModel.getColumn(viewColumn).getModelIndex();
if(column != -1 && e.isShiftDown()) {
sorter.setSortKeys(null);
}
}
});
- &jnlp;
- &jar;
- &zip;
解説
ヘッダにマウスリスナーを設定し、Shiftキーを押しながらのクリックの場合は、TableRowSorter#setSortKeysメソッドを使って、ソートキーを空にしています。
上記のサンプルでは、以下のような制限があります。
- ソートキーになっていないヘッダカラムをShift+クリックした場合でも、ソート状態をクリアする
- 行がソートされている場合は、ドラッグ&ドロップで行を入れ替え不可