T
hanks :) Yes, I have implemented it and resolved this issue.
@Override
public void render(com.google.gwt.cell.client.Cell.Context context,
SearchItem value, SafeHtmlBuilder sb) {
for (HasCell<SearchItem, ?> hasCell : searchCells) {
render(context, value, sb, hasCell);
}
}
protected <X> void render(Context context, SearchItem value,
SafeHtmlBuilder sb, HasCell<SearchItem, X> hasCell) {
Cell<X> cell = hasCell.getCell();
sb.appendHtmlConstant("<div style='display:block;padding-bottom:5px;'>");
cell.render(context, hasCell.getValue(value), sb);
sb.appendHtmlConstant("</div>");
}