I’m trying to figure out how to override the dataGridHeader style defined in DataGrid.css! GWT core. The GWT style name is obfuscated with adler32 so I can’t simply use .dataGridHeader in my css. In my case I wish a simple change of white-space:normal.
I’ve seen may articles here about injecting css but they all appear to be class level rather than a sub style used within a component like DataGrid.
How do I override a header style used within a component like DataGrid?
Just like with any
ClientBundleandCssResource: create an interface that extendsDatagrid.Resourcesand overrides thedataGridStylemethod with a@Sourceannotation pointing to your own CSS file (or possibly to both the original file and your own file, so they’ll be combined together).Doing it that way will override the style for all
DataGrids in your app though (it actually depends on whichCssResourceinstance getsensureInjected()first: the one from the originalDataGrid.Resourcesor the one from your sub-interface): because you use the same return type (DataGrid.Style), the obfuscated class names will be the same.If you want to change the style on a case-by-case basis then, in addition, declare an interface that extends
DataGrid.Styleand use that as the return type to yourdataGridStyleoverride: because the obfuscated class name is based on both the interface fully-qualified name and the method name, yourDataGrid.Stylesub-interface will generate different obfuscated class names than the originalDataGrid.Styleinterface.Then of course,
GWT.create()yourDataGrid.Resourcessub-interface and pass it as an argument to theDataGridconstructor.See also http://code.google.com/p/google-web-toolkit/issues/detail?id=6144