List of usage examples for com.vaadin.ui Component detach
public void detach();
From source file:com.haulmont.cuba.web.toolkit.ui.CubaWidgetsTree.java
License:Apache License
protected void detachGeneratedComponents() { for (Component c : nodeWidgets) { if (c.isAttached()) { c.detach(); }//w w w .j av a2s . c o m } }