PDA

View Full Version : How do I remove the BusyIndicator after you read a feed?



LucioMSP
20th February 2012, 18:15
Hi, I have a problem with a BusyIndicator, what happens is that I have appointed BusyIndicator that when loading the feed is removed, but in my file. QML images do not appear in the feed, I wonder if there is any way to tell the BusyIndicator that when the image is displayed BusyIndicator remove.

My code:

BusyIndicator {
id: busyindicator1
x: 152
y: 82
width: 56
height: 56
visible: running
running: modelo.status === XmlListModel.Loading

}
Timer {
id: splashTimer
running: true
triggeredOnStart: false;
onTriggered: modelo.visible = false
//onTriggered: busyindicator1.visible = false
}