Displaying 1 result from an estimated 1 matches for "combo_topology".
2006 Oct 21
0
tcltk: multiple listboxes, selection
...nt selection in the *other* listboxes is
cleared!
Anybody knows how I can prevent this?
Here's my code (sorry not complete):
(E.g. If I select an X value, I'd lose the Y value I selected before)
gui.create.tab.general <- function(tt) {
# Network topology
frame.1 <- tkframe(tt)
combo_topology <- tkwidget(frame.1, "ComboBox", values = infras,
editable = FALSE)
tcl(combo_topology, "setvalue", "first")
tkgrid(tklabel(frame.1, text="Network topology"), combo_topology)
tkgrid(frame.1, sticky = "w")
# X values
frame.x <- tk...