Cannot scroll horizontally in IPad2

Hello,

This is a very simple piece of test code, just lists a set of text fields to expand the page wide and tall enough. However in iPad, it is only scrollable vertically, NOT horizontally. What might be the problem in this code. I am desperate! please help!

Br,
Xuan

		Panel pnlMain = new Panel();
		pnlMain.setSizeFull();
		
		VerticalLayout vloContent = (VerticalLayout)pnlMain.getContent();
		vloContent.setSizeUndefined();
		
		GridLayout gloTestLayout = new GridLayout(9, 10);
		for(int i =0; i <9; i++){
			for(int j = 0; j < 7; j++){
				TextField txtf= new TextField("test me" + i + j);
				txtf.setHeight(170, Sizeable.UNITS_PIXELS);
				gloTestLayout.addComponent(txtf, i, j);
			}
		}

		vloContent.addComponent(gloTestLayout);
		
		pnlMain.setStyleName(Runo.PANEL_LIGHT);
		
		mainWindow.setContent(pnlMain);

Hi,

This is actually a known limitation, but as there was no ticket for it I created one:
#7806

Vaadin contains custom code that allows users to scroll inner elements on iPad (and relatives) using one finger, which pre-iOS-5 devices would otherwise not allow. Unfortunately this support is currently limited to vertical scrolling. iOS 5 finally comes with built-in support for scrolling like this in web applications, but on pre-5 devices you still need to use the two-fingers-to-scroll magic.

Best Regards,
Marc