w <- gwindow(title="Example",visible=TRUE)
g = ggroup(horizontal = FALSE, cont=w)
values=c(1,2,3,4,5)
temp <- gcombobox(values,cont=g)
gbutton("Add the value to the list", cont=g,handler = function(...){
###### Store in a vector e.g. stored <- c(stored,svalue(temp)) #######
})
print(stored)
我让用户从组合框中选择值,当用户想要将该值添加到向量中时,我提供按钮来添加值,但是如何存储< strong> svalue(组合框)因为它在按钮的处理程序中将为null。此外,如果我通过它,我将无法将其存储在全局向量中。