I have about 100 buttons that user set to “checked” status.
And when one “reset” button is clicked, I want to “uncheck” all 100 buttons.
I didn’t find a solution how can I do this in Flipabit.
All I found was a script and examples like this:
Item {
Connections {
target: document.childByName("Reset_all").scriptAdaptor
onEventItemClicked: {
document.childByName("1_1").content.scriptAdaptor.actionUnCheck()
document.childByName("1_2").content.scriptAdaptor.actionUnCheck()
document.childByName("1_3").content.scriptAdaptor.actionUnCheck()
}
}
}
But here I need to list the NAMES of the buttons. But I don’t want to list all 100 names
Is there any way to give the command to uncheck “ALL the buttons” in the project?
Or loop through them somehow?
Thanks in advance for your reply.