ChildData childData = getChildData();
TableUtil.writeColumnTags(context, dropDownField, childData.getColumns());
TableStructure tableStructure = childData.getTableStructure();
TableHeader tableHeader = tableStructure.getHeader();
if (tableHeader.isContentSpecified()) {
tableHeader.render(context, null);
}
writer.startElement("tbody", this);
if (dropDownList != null)
renderRows(context, dropDownField, childData, dropDownList, 0);
writer.endElement("tbody");
TableFooter tableFooter = tableStructure.getFooter();
if (tableFooter.isContentSpecified()) {
tableFooter.render(context, null);
}
}