populate(ft);
for (int row = 0; row < table.getRowCount(); row++) {
for (int column = 0; column < table.getCellCount(row); column++) {
FBFormItem item = (FBFormItem) this.table.getWidget(row, column);
if (item != null) {
ft.addCell(row);
int colspan = table.getFlexCellFormatter().getColSpan(row, column);
ft.getFlexCellFormatter().setColSpan(row, column, colspan);
ft.setWidget(row, column, item.cloneDisplay(data));
}
}