Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-134778

Binding: short syntax broken with ComponentBehavior: Bound

    XMLWordPrintable

Details

    Description

      The following code illustrates how the "new" Binding syntax fails to cross component boundaries. Workaround is to use the "old" syntax.

      pragma ComponentBehavior: Bound
      
      import QtQuick
      
      Window {
        id: root
      
        width: 640
        height: 480
        visible: true
        title: qsTr("Hello World")
      
        property int foo
      
        Text {
          text: `Foo: ${root.foo}`
        }
      
        Repeater {
          model: 1
      
          delegate: Item {
            id: delegate
      
            // Error: QML Binding: Unknown name "root.foo". The binding is ignored.
            Binding {
              root.foo: 42
            }
      
            // Works
            // Binding {
            //   target: root
            //   property: "foo"
            //   value: 42
            // }
          }
        }
      }
      

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            qtqmlteam Qt Qml Team User
            njeisecke_qtc Nils Jeisecke
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:

              Gerrit Reviews

                There are no open Gerrit changes