I want blanket commands that modify a property of every item of the repeater. right now I have this javascript function that does the job:
function disable() {
for (var i = 0; i < theRepeater.model; i++) {
theRepeater.itemAt(i).state = "disabled"
}
}
But I am hoping for a single command that can change the state of every item in the repeater to disabled
↧