fieldPanel = new SectionFieldPanel(this);
fieldPanel.setLayout(null);
add(fieldPanel);
for (Iterator iter = section.fields(); iter.hasNext(); ) {
Field f = (Field)iter.next();
FieldWidget fw = f.makeWidget(this);
fieldPanel.add(fw.getComponent(), 0); // Add to top of visual stack.
}
// Let field panel set background color of itself and fields based
// on "always hide" suppression.