1. EuGTK: set(col,"visible",FALSE)
- Posted by Jerry_Story Jan 13, 2012
- 1595 views
The following code worked with the gtk2 version of EuGTK, but doesn't work with the gtk3 version of EuGTK.
-- lstDiet is a list view. col = gtk:get(lstDiet,"column",indD-1) set(col,"visible",FALSE) -- It doesn't understand 'visible'.
This and other variations ("visible_column", "column visible", "column_visible") don't work either.
set(col,"visible column",FALSE)
Doing stuff like
grep visible *.ex
doesn't find what I want.
2. Re: EuGTK: set(col,"visible",FALSE)
- Posted by irv Jan 18, 2012
- 1501 views
Hmm... works for me. I'll add a demo to the update I'm posting today. test33.ex should have a button to hide a column.
3. Re: EuGTK: set(col,"visible",FALSE)
- Posted by Jerry_Story Jan 20, 2012
- 1462 views
Got it solved. I was doing col the old way.