PDA

View Full Version : QML webview navigation



snake91
3rd December 2011, 13:22
Hi all,

I have a simple symbian qt application and i'm using QML to dysplay a webpage.

here is my code


WebView {
property string urlString: "http://google.it"
settings.javascriptEnabled: true
id: web_view1
x: 0
y: 0
width: 360
height: 610

url: urlString
}

Now this works well and sysplay the webpage correctly, but wen i try to follow a link in the page the new content is overlapped to the first one.

Any suggestions?

Thanks for helps.