I've placed a gradio object into a gtable cell. Based on a selection from another control I want to modify the nature of the gradio object and replace it in the same cell.
tmpL <- gframe(" Locations ", container=group, columns=2, horizontal=TRUE)
tblL <- glayout(container=tmpL,spacing=5)
tblL[1,1] <- 'Basin';tblL[1,2] <- 'Layer';
tblL[2,1] <- gradio(names(availBasins1),cont=tblL)
tblL[2,2] <- gradio(names(availLayers),cont=tblL
The contents of tblL[2,1] would be modified using a different gradio object based on the results of a selection from a separate control. What's the next step?