Reply To: How to make a click radiobutton eventListener work?

#14323367

I have something trying this:

custom_radiobutton.addEventListener(“onChange”, function() {
custom_pos_group.enabled = custom_radiobutton.value;
}
);

or this:

selec_pos_radiogroup.addEventListener(“onChange”, function() {
custom_pos_group.enabled = custom_radiobutton.value;
}
);

I get the same result, both of them enable the group custom_pos_group, but doesn’t disabled it when i click another radiobutton.

Well, one step forward at last!

This article was last modified on December 29, 2019

Comments (0)

Loading comments...