Re: How to override CellTable css

2012-10-15 Thread Nagesh Salunke
some CellTable CSS definitions. I've been able to isolate the classes to some named along the lines of .GL0PBETBKC, .GL0PBETBEC etc. The CellTable CSS appears to be injected into my module after my .css file and the only way I have been able to override the above styles is by using

Re: How to override CellTable css

2012-06-21 Thread Martones
Hi all, I dig up this thread to ask a question about the CSS overriding. My problem is that once I create a celltable with my customised CellTable.Resources, all other CellTables in my application use this style (even though I didnt pass the resource to their constructor). This is because the

Re: How to override CellTable css

2012-06-21 Thread Thomas Broyer
On Thursday, June 21, 2012 9:54:39 AM UTC+2, Martones wrote: Hi all, I dig up this thread to ask a question about the CSS overriding. My problem is that once I create a celltable with my customised CellTable.Resources, all other CellTables in my application use this style (even though I

Re: How to override CellTable css

2012-06-21 Thread Martones
Great thanks alot for a quick answer Thomas :) Extending CellTable.Style did the trick Le jeudi 21 juin 2012 10:10:26 UTC+2, Thomas Broyer a écrit : On Thursday, June 21, 2012 9:54:39 AM UTC+2, Martones wrote: Hi all, I dig up this thread to ask a question about the CSS overriding. My

CellTable CSS (still!)

2011-09-12 Thread Tony Kennah
Hi I've managed to make a CellTable use my own CSS rules by extending CellTable.Resources with my own resources which overrides cellTableStyle, simple. I provide a link to my own CSS file within the extended Resources I can now construct a CellTable using this resource and it will render as

Re: CellTable CSS (still!)

2011-09-12 Thread Eric Metcalf
I think you should use @external like so.. @external .bbcolor; .bbcolor { backgound-color: red !important; } To start debugging this, you should inspect the table row (using Chrome or firebug in Firefox) and see if it was given the bbcolor class name. Then you can find out if the problem is

Re: CellTable CSS (still!)

2011-09-12 Thread Tony Kennah
I mis-spelled background in the CSS rule! BACKGOUND - Dyslexic sorry! Thanks for all the help! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from

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

Re: Celltable Css

2011-03-22 Thread Marco Gadaleta
The problem of ClientBundle however is that if i've a bundle it must be in the same position of css..in this way i can't add external css dynamically.. On Mon, Mar 21, 2011 at 11:32 PM, Thomas Broyer t.bro...@gmail.com wrote: On Monday, March 21, 2011 8:24:05 PM UTC+1, gadaleta.marco wrote:

Celltable Css

2011-03-21 Thread Marco Gadaleta
Hello i'm needing help about the possibility to style cellTable using a css declared in this way in the host page: link type=text/css rel=stylesheet href=Global.css I'm trying to assign css in setstyle..but without result. Any help is appreciate -- Marco -- You received this message

Re: Celltable Css

2011-03-21 Thread Y2i
Not sure if declaring styles in html file will work, but the standard approach where you pass resources to the cell table constructor works. http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html#Using_an_external_resource

Re: Celltable Css

2011-03-21 Thread Marco Gadaleta
It' so strange. In this way i cant handle multiple css.. On Mon, Mar 21, 2011 at 5:40 PM, Y2i yur...@gmail.com wrote: Not sure if declaring styles in html file will work, but the standard approach where you pass resources to the cell table constructor works.

Re: Celltable Css

2011-03-21 Thread Thomas Broyer
On Monday, March 21, 2011 8:24:05 PM UTC+1, gadaleta.marco wrote: It' so strange. In this way i cant handle multiple css.. Yes you can. You can have several CellTable.Resources/Style instances, and you can also define your CellTable.Style to use @external CSS class names soyou can style

Re: How to override CellTable css

2011-01-27 Thread mike b
thanks to everyone who posted comments here. This has really helped me as well as I had problem styling the CellList. The same pattern works there as well. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: How to override CellTable css

2011-01-27 Thread Thomas Lefort
Great Thread. Thanks to the contributors. Makes me wonder if there are (other than Google) templates available out there for GWT? On Jan 27, 5:04 pm, mike b mbaker.t...@gmail.com wrote: thanks to everyone who posted comments here.  This has really helped me as well as I had problem styling the

how to edit celltable css..

2010-12-28 Thread jhpark
sorry,, I can't write english.. I use cellable and apply callTable.css. 1.. load css.. public interface CellTableResource extends CellTable.Resources { public interface CellTableStyle extends CellTable.Style { }; @Source({CellTable.css}) CellTableStyle

Re: How to override CellTable css

2010-12-10 Thread manstis
to override some CellTable CSS definitions. I've been able to isolate the classes to some named along the lines of .GL0PBETBKC, .GL0PBETBEC etc. The CellTable CSS appears to be injected into my module after my .css file and the only way I have been able to override the above styles

Re: How to override CellTable css

2010-11-28 Thread savilak
; } --- I hope this helps... Regards Savilak On Nov 27, 11:52 pm, manstis michael.ans...@gmail.com wrote: Hi, I need to override some CellTable CSS definitions. I've been able to isolate the classes to some named along the lines of .GL0PBETBKC, .GL0PBETBEC

Re: How to override CellTable css

2010-11-28 Thread Marcin Misiewicz
; } --- I hope this helps... Regards Savilak On Nov 27, 11:52 pm, manstis michael.ans...@gmail.com wrote: Hi, I need to override some CellTable CSS definitions. I've been able to isolate the classes to some named along

Re: How to override CellTable css

2010-11-28 Thread Efstathios Kalyvas
wrote: Hi, I need to override some CellTable CSS definitions. I've been able to isolate the classes to some named along the lines of .GL0PBETBKC, .GL0PBETBEC etc. The CellTable CSS appears to be injected into my module after my .css file and the only way I have

How to override CellTable css

2010-11-27 Thread manstis
Hi, I need to override some CellTable CSS definitions. I've been able to isolate the classes to some named along the lines of .GL0PBETBKC, .GL0PBETBEC etc. The CellTable CSS appears to be injected into my module after my .css file and the only way I have been able to override the above styles

CellTable CSS Styling Not Possible?

2010-11-22 Thread Jeff Schwartz
I've posted a few questions regarding CellTable and CSS styling but none have been answered. I've looked at the /com/google/gwt/user/theme/standard/public/gwt/standard/standard.css file (I am using the standard theme) but I cannot find selectors that seems related to CellTable. The google docs for

Re: CellTable CSS Styling Not Possible?

2010-11-22 Thread Stephen Haberman
Am I to conclude then that it is not possible to style a CellTable using CSS? http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/user/cellview/client/CellTable.Resources.html

Re: CellTable CSS Styling Not Possible?

2010-11-22 Thread Jeff Schwartz
Thanks, Stephen, but I am actually trying to find the names of the CSS selectors currently used by CellTable so that I can override them in my application's CSS files and/or in my uibinder xml files. Perhaps you're saying that it isn't possible to apply CSS styling to CellTables without having to

Re: CellTable CSS Styling Not Possible?

2010-11-22 Thread Stephen Haberman
Thanks, Stephen, but I am actually trying to find the names of the CSS selectors currently used by CellTable so that I can override them in my application's CSS files and/or in my uibinder xml files. As Qian said, the css names are in the interface. See the ClientBundle docs:

Re: CellTable CSS Styling Not Possible?

2010-11-22 Thread Jeff Schwartz
Joe, Stephen, thanks. I understand and will apply this to styling my CellTable instances. I gather this is also true for SimplePager (I need to set the td element which hosts the last page icon to be right aligned)? Thanks again. Jeff On Mon, Nov 22, 2010 at 10:07 AM, Stephen Haberman