Hi all,
I am working on an application where i am in need of help:
I am having a button in the main page.qml(main window) and when i click on it,it must go to the next page(.qml) where i have a webview as such:
ABC.qml:
import QtWebKit 1.0
WebView {
url: "http://www.google.co.in"
preferredWidth: 490
preferredHeight: 400
scale: 0.5
smooth: false
}
and in the click event i am having:
main.qml:
onJobsClicked: {
if (currentPage != "jobs")
MCWHandler.pushPage("jobs")
currentPage = "jobs"
header.headerText = "Jobs"
busyVisible = true
Qt.resolvedUrl ("ABC.qml")
stateIndexProperty = 2
tab.visible = false
showStandardListView()
}
From my code i was not able to move on to next page.
Can anyone help me with this ??
Regards,
Harish.M





