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
}
WebView {
property string urlString: "http://google.it"
settings.javascriptEnabled: true
id: web_view1
x: 0
y: 0
width: 360
height: 610
url: urlString
}
To copy to clipboard, switch view to plain text mode
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.
Bookmarks