2
Ich habe manchmal eine Dropdown-Box mit nur einem Element zur Auswahl, aber dieses Element kann eine Zeichenfolge mit Leerzeichen sein. Wie kann ich das in R machen? Hier ist das Problem:Wie setze ich Werte in eine Tk-Combobox in R
library(tcltk2)
root<-tktoplevel()
v <- tclVar()
d <- tk2combobox(root, textvariable=v)
tkpack(d)
# works
tkconfigure(d, values=c("a string with spaces", "a second string"))
# inserts four items instead of one
tkconfigure(d, values=c("a string with spaces"))
Jeder Hinweis geschätzt!
Funktioniert gut, danke! –