My goal is to create a border around my DataGrid GWT element. So far, I have been able to modify the default CSS classes from the official GWT DataGrid CSS file, with some success. While I was able to add borders to the ".dataGridEvenRow" and ".dataGridOddRow" by overriding the CSS attributes such as border-style and border-top, the same approach did not work for the ".dataGridWidget". I attempted to apply border CSS attributes in the following code snippet, but unfortunately no border was visible:
.dataGridWidget
{
border-style:ridge;
border-width:5px;
border-color: blue;
}
Is there any other way to achieve a blue border around a DataGrid?