The warnings and errors that I am getting:

Using Qt Quick 1 code model instead of Qt Quick 2 (M324);
Invalid property name 'onNavigationRequested';
Tried the following example from this qt project webpage:
https://qt-project.org/doc/qt-5-snap...t-webview.html

Qt Code:
  1. import QtQuick 2.0
  2. import QtQuick.Controls 1.0
  3. import QtWebKit 3.0
  4.  
  5. ScrollView {
  6. width: 1280
  7. height: 720
  8. WebView {
  9. id: webview
  10. url: "http://qt-project.org"
  11. anchors.fill: parent
  12. onNavigationRequested: {
  13. // detect URL scheme prefix, most likely an external link
  14. var schemaRE = /^\w+:/;
  15. if (schemaRE.test(request.url)) {
  16. request.action = WebView.AcceptRequest;
  17. } else {
  18. request.action = WebView.IgnoreRequest;
  19. // delegate request.url here
  20. }
  21. }
  22. }
  23. }
To copy to clipboard, switch view to plain text mode 

I am getting the warnings/errors as stated in the title.

First warning shows when I hover on WebView and the second error appears when I hover on onNavigationRequested.

Qt version I am using is 5.3.1
Qt Quick Component set I selected through QtCreator is: Qt Quick 2.2
QtCreator version is: 3.1.2

on Ubuntu 14.04.1 LTS

Tell me if there is something else that I can present here for you to help me.