Grid borders in GWT can be extremely annoying. If you are trying as hard as you can, but can't seem to make the borders between cells disappear, you can use the following css for the entire grid:
.grid-without-cell-borders{
border-collapse:collapse;
}
This works because GWT creates a html table element for a grid, so setting the border-collapse property to collapse will make the table cell borders disappear.
No comments:
Post a Comment