Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment

Locked History Actions

GWT/Widget/CellTable

CellTable

参考

CellTableの使えなさ

CellTableは以下の理由で「使えない」、もしくはSwingと同様なイメージでは使えない。

  • PageSize設定をしなければならず、このデフォルトは15。これ以上の行数を一度に表示することはできない。

  • かといって、Integer.MAX_VALUEなどを設定するとOutOfMemoryErrorになる。

  • ScollPanelの中にCellTableを置くと、ヘッダ部までスクロールして見えなくなってしまう。

結局、JavaDocのサンプルにあるようにPager(ここではSimplePager)を使って、ページング表示をしなければならないのだが、しかし表示領域のリサイズ(ブラウザ画面のリサイズ)にしたがって、PageSizeを再計算しなければならない。この方法は不明。

DataGridでは、ある程度解消されている(完全ではない)。