customize CellTable css style

2011-04-12 Thread mariyan nenchev
Hi, I tried to customize gwt CellTable with no success. Am I missing something? Here is what i did: 1) create custom resource interface: public interface CellTableResource extends Resources { public CellTable.Resources INSTANCE = GWT.create(CellTableResource.class);

Re: customize CellTable css style

2011-04-12 Thread Javier
I think you need to create your implementation of CellTable.Style. Something similar to: interface MyCellTableResources extends Resources { @Source(MyCellTableStyle.STYLE) MyCellTableStyle cellListStyle(); } interface MyCellTableStyle