Dynamically set Label's "id" property

2k Views Asked by At

I'm developing an application for SailfishOS using the QML language. I want to dynamically set the id property of a Label by using an if condition.

This is my code:

    Label {
        id: {
            if(myBool == false) {
                thisText()
            } else {
                notThatText()
            }
        }
        width: parent.width
        horizontalAlignment: Text.AlignRight
        text: ""
        font.pixelSize: Theme.fontSizeLarge
    }

This code is placed into my CoverPage.qml file, the one that display things on the application's cover while in background. By doing this, the cover is simply black, nothing is displayed.

Is it possible in QML to do this?

Thanks in advance!

3

There are 3 best solutions below

0
On

The Qt doc says this.

While it may look like an ordinary property, the id attribute is not an ordinary property attribute, and special semantics apply to it;

You cannot set the id of a QML component at runtime.(Correct me if I am wrong). You might find objectName property useful. But I don't understand why you are trying to assign dynamic id.

0
On

I have a use case where use a dynamic/specific id could be useful. The id could be view with Gammaray, it can help for debugging.

GridLayout {
  id: layout
  Repeater {
    model: foo
    Bar {
      id: bar_X_Y // bar_{model.row}_{model.column}
    }     
  }
}

But as far as I know, it's not possible.

0
On

Your Better Off storing the component instance in an array or a property, there after you can access it.

For Components created in a Repeater, i put them to an array

property var myItemsList:[]
Item
{
    //....
    Component.onCompleted: 
    {
        // push to array
        // 'this' refers to the current component, kind of its 'id'
        myItemsList.push(this)
        
        // even better, you can push in better formats
        //myItemsList.push({name:"myItemDesiredName",comp:this})
    }
}

Once you have an array, Then Javascript knowledge can now fully apply, in terms of item access