2

In my GWT 2.4 app I'm having cell tables with >10 columns. I'm wondering how to add horizontal scrollbar to these tables because for some screen resolutions some columns are hidden.

Thanks for any help.

zbyszek26104
  • 437
  • 1
  • 5
  • 15

1 Answers1

3

You can either use DataGrid instead of CellTable, or you can wrap your CellTable in a ScrollPanel.

Andrei Volgin
  • 40,755
  • 6
  • 49
  • 58
  • @Andrei Volgin not works for me. I wrap celltable in scrollpanel. Provided table-layout: fixed to celltable, vertical scroll coming but no horizontal scroll – StackOverFlow Sep 16 '13 at 08:22
  • @zbyszek26104 not works for me. I wrap celltable in scrollpanel. Provided table-layout: fixed to celltable, vertical scroll coming but no horizontal scroll – StackOverFlow Sep 16 '13 at 08:24