GWT 2.4 を使用しています。ipad(ios 7)でWebアプリケーションを表示すると、スクロールに遅延が発生します。スクロール イベントは、タッチ終了イベントが完了した後にのみ発生するため、応答していないように見えることがあります。スクロールがすでに行われているときにスクロールしようとすると、スクロールもフリーズします。誰も同じ問題を抱えていますか?私を助けてください。
protected void addContentPane()
{
ScrollPanel touchScroller = new ScrollPanel();
touchScroller.setStyleName("touchScrollContainer");
touchScroller.setSize((width - 2) + "px", contentPaneHeight + "px");
touchScroller.getElement().setId(tabID);
touchScrollPane = new HTML("", true);
touchScrollPane.setHTML("A big boring String....");
touchScroller.setWidget(touchScrollPane);
contentPane.add(touchScroller);
}
}