CellList GWT CSS Style?

You need to tell GWT to use the new styles -- simply adding them to your module CSS file isn't going to be enough: table = new CellTable(12, CellTableResources. INSTANCE, keyProvider); CellTableResources. INSTANCE should be a Resource bundle instance that extends the CellTable Resource bundle.

Something like: import com.google.gwt.core.client. GWT; import com.google.gwt.resources.client. ImageResource; import com.google.gwt.resources.client.ImageResource.

ImageOptions; import com.google.gwt.resources.client.ImageResource. RepeatStyle; import com.google.gwt.user.cellview.client. CellTable; import com.google.gwt.user.cellview.client.CellTable.

Style; public interface CellTableResources extends CellTable. Resources { public static CellTableResources INSTANCE = GWT. Create(CellTableResources.

Class); @Source("footer_bg. Png") @ImageOptions(repeatStyle = RepeatStyle. Both, flipRtl = true) ImageResource cellTableFooterBackground(); @Source("header.

Png") @ImageOptions(repeatStyle = RepeatStyle. Horizontal, flipRtl = true) ImageResource cellTableHeaderBackground(); @Source("table_head_bg_left. Png") @ImageOptions(repeatStyle = RepeatStyle.

None, flipRtl = true) ImageResource cellTableHeaderFirstColumnBackground(); @Source("table_head_bg_right. Png") @ImageOptions(repeatStyle = RepeatStyle. None, flipRtl = true) ImageResource cellTableHeaderLastColumnBackground(); @Source(CellTableStyle.

DEFAULT_CSS) Style cellTableStyle(); } And then of course the same sort of thing for CellTableStyle: import com.google.gwt.user.cellview.client. CellTable; public interface CellTableStyle extends CellTable. Style { String DEFAULT_CSS = "path/to/your/new/CellTable.

Css"; String cellTableCell(); // .... }.

You need to tell GWT to use the new styles -- simply adding them to your module CSS file isn't going to be enough.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions