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?