0

I am trying to we both vertical and horizontal scrollable of a table in lwuit but there is a problem. When i set the horizontal scrollable it disables the vertical scrollable automatically. The following is the code:

t.setScrollableX(true);
t.setScrollable(true);

I guess both the scrollable don't work simultaneously. Any help would be appreciated.

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
Nitesh Verma
  • 1,795
  • 4
  • 27
  • 46

1 Answers1

1

Did you try to put the Form's scrollable property to false? I think that you should try it using setScrollable(false);

Mun0n
  • 4,438
  • 4
  • 28
  • 46
  • But by this i am able to scroll from the right hand side of the phone but cannot scroll by dragging the content. Is it possible to do like this? – Nitesh Verma Oct 28 '13 at 11:28
  • I suppose that if you build the components inside the table, scrollables, you will be able to drag inside them, but I think that the app will ran very slow – Mun0n Oct 28 '13 at 11:37