javierdotnet / gwt-ext

Automatically exported from code.google.com/p/gwt-ext
0 stars 3 forks source link

FieldSet.clear() only clears the filed but not the labels #404

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The clear method clears the fields themselves but not the labels on a 
FieldSet.

Original issue reported on code.google.com by mlim1...@gmail.com on 5 Sep 2008 at 7:06

GoogleCodeExporter commented 9 years ago
Overwriting the following methods in FieldSet to take care of the lingering 
labels 
after calling clear or removeAll:

public void removeAll()
public void removeAll(boolean autoDestroy)

both methods will call the super method and then call:
private native void removeLabels(boolean autoDestroy)

Original comment by mlim1...@gmail.com on 5 Sep 2008 at 7:11