I test the following code posted at 1

The qml viewer cannot open the new window and its progress is always 0.1 , what is the problem?

import QtQuick 1.0
import QtWebKit 1.0

Grid {
    columns: 3
    id: pages
    height: 300; width: 600

    Component {
        id: webViewPage

            WebView {
                id: webView
                height: 300; width: 600
                newWindowComponent: webViewPage
                newWindowParent: pages
                url: "newwindows.html"

                onLoadStarted: console.log("Started"+url)
                onLoadFinished: console.log("Finished"+url)
                onLoadFailed: console.log("Failed")
                onProgressChanged: console.log(progress)
                onUrlChanged: console.log("Changed"+progress+url)
            }
    }

    Loader { sourceComponent: webViewPage }
}
link|improve this question

43% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.