Re: [R] Tktable do not expand inside a Tkframe

2015-12-03 Thread phgrosjean
Instead of using tkgrid(), you can do this with tkpack(). Replace: > tkgrid( tableData, scrY ) > tkgrid.configure( scrY, sticky="nsw") > tkgrid( scrX, sticky="new" ) by: scrYwidth <- as.integer(tkcget(scrY, width = NULL)) tkpack(scrY, side = "right", fill = "y", expand = FALSE, pady = c(0, s

[R] Tktable do not expand inside a Tkframe

2015-12-03 Thread Cleber N.Borges
hello all, I'm trying to build a table within a frame. I would like the table to expand when the entire window is expanded. I could not find examples of how to solve this problem. I thank you in advance for help. Cleber ### # piece of the code library( tcltk