Disable one item of the radio button in gWidgets

316 Views Asked by At

Is it possible to disable the particular item that selected in the radio button? Below is my example code:

ts <- c("a", "b", "c")
myRadio <- gradio(ts, container = window)

#Disable the entire radio button
enabled(myRadio) <- FALSE

My question is, What if I only want to disable only the first item - "a". Is it possible to do this is gwidgets?

0

There are 0 best solutions below