I'm using gtk.Table in my python application. How can I remove a widget such a gtk.VBox, gtk.HBox or a gtk.Button that I attached in the table? I want to remove the widget in exactly position. Is there anyway to unattach a child widget from table? Such like:
table.attach(button,1,2,1,2)
table.unattach(button,1,2,1,2)