Re: GWT 2.1 Cell Widgets style

2010-10-28 Thread pjspychala
http://code.google.com/p/google-web-toolkit/source/browse/releases/2.1/user/src/com/google/gwt/user/cellview/client/CellTable.css you can override any of those ie: .cellTableHeader { color: #fff; } -- You received this message because you are subscribed to the Google Groups "Google Web Toolk

Re: GWT 2.1 Cell Widgets style

2010-10-22 Thread Thomas Broyer
On 22 oct, 20:57, Deepak Singh wrote: > Can you pls provide myCellTable.css or some sample css. See http://groups.google.fr/group/google-web-toolkit/msg/e31641467b402dd9 -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this g

Re: GWT 2.1 Cell Widgets style

2010-10-22 Thread Deepak Singh
Can you pls provide myCellTable.css or some sample css. On Thu, Oct 21, 2010 at 11:52 PM, pjspychala wrote: > interface TableResources extends CellTable.Resources > { > @Source({"myCellTable.css"}) > TableStyle cellTableStyle(); > } > > interface TableStyle extends CellTable.Style {} > > @UiFie

Re: GWT 2.1 Cell Widgets style

2010-10-21 Thread pjspychala
interface TableResources extends CellTable.Resources { @Source({"myCellTable.css"}) TableStyle cellTableStyle(); } interface TableStyle extends CellTable.Style {} @UiField(provided=true) CellTable junkCellTable; CellTable.Resources reso = GWT.create(TableResources.class); junkCellTable= new

GWT 2.1 Cell Widgets style

2010-10-21 Thread pjspychala
I've been trying to clean up my styling of the new Data Presentation Widgets in GWT 2.1. Right now, I am having a hard time changing the style of the header of a CellTable without going through DOM. I have tried passing a extended Resources class to the CellTable constructor with odd results (the