Listview elements

Hello, is it possible to have as soon as I click on an element of the list view no longer to click on the others? If yes, how?

disable click of elements

Disable the click using a variable

Initialize global clicked to 0;
When List View . Click {
If (get global clicked != 1){
do something;
set global clicked to 1;
}
}

4 Likes