我正在使用GWT 2.4。 在ipad(ios 7)中查看Web應用程序時,滾動會有延遲。 只有在觸摸結束事件完成後,纔會觸發滾動事件,從而使其看起來無反應。當滾動已經發生時,滾動條也會凍結。有沒有人有同樣的問題?請幫幫我。只有在GWT中的觸摸完成後滾動纔會發生ScrollPanel
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);
}
}
2.5.1會發生嗎? – Spiff
不,我沒有用2.5來檢查它。 – samuel
請用2.5.1檢查一下,我認爲問題會消失。 – Spiff