Skip to content
Advertisement

When enabling a button, disabling the other

Code:

JavaScript

Output:

output1

When I click any other button, I get:

output2

All buttons get enabled.

Question:

After I’ve clicked one of the buttons which aren’t disabled, I want this one to get disabled. Let’s say I clicked button button2. Thus, button2 will get disabled as shown:

desired_output

The reason why I haven’t found a solution is because the button that will be selected is arbitrary, so I can’t think of how to do it.

Advertisement

Answer

Pass index when you call the all_state() also place button_list = [button1, button2, button3] outside the function.

Example:

JavaScript

Alternatively use event.widget to get the current button:

JavaScript
Advertisement