I want to create custom cell in grid. This is not a problem. The problem: text in this custom cell has incorrect style.
myColumn.setRenderer(new GridCellRenderer<TaskModel>() {
public Object render(TaskModel model, String property, ColumnData config, int rowIndex, int colIndex, ListStore<TaskModel> taskModelListStore, Grid<TaskModel> taskModelGrid) {
VerticalPanel panel = new VerticalPanel();
Html html = new Html("xxxx");
Button b = new Button("xxxxxxxx");
panel.add(html);
panel.add(b);
return panel;
}
});
Why this happened?

