Re: How to override CellTable css

2012-10-15 Thread Nagesh Salunke
While using this i am getting No source code is available for type Resources.CellTableResources; did you forget to inherit a required module? Help.. On Sunday, 28 November 2010 20:05:07 UTC+5:30, savilak wrote: That is correct, you also need the following: CellTableResource resource =

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

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

Re: How to override CellTable css

2010-12-10 Thread manstis
Thanks to all; it worked a treat - and the resultant reading has led me to understand ClientBundles a whole lot more too :) Everyone's a winner. On Nov 28, 2:35 pm, Efstathios Kalyvas savi...@gmail.com wrote: That is correct, you also need the following:   CellTableResource resource =

Re: How to override CellTable css

2010-11-28 Thread savilak
Hi Manstis, use the code below to do it. 1) Extend CellTable.Resources --- public interface CellTableResource extends CellTable.Resources { public interface CellTableStyle extends

Re: How to override CellTable css

2010-11-28 Thread Marcin Misiewicz
I guess, that you are also passing CellTableResource instance to the constructor of the CellTable. Othwerwise you will stiil use the default styles. On Nov 28, 9:04 am, savilak savi...@gmail.com wrote: Hi Manstis, use the code below to do it. 1) Extend CellTable.Resources

Re: How to override CellTable css

2010-11-28 Thread Efstathios Kalyvas
That is correct, you also need the following: CellTableResource resource = GWT.create(CellTableResource.class); CellTablePropertyLight table = new CellTablePropertyLight(10,resource); as Marcin suggests. On Sun, Nov 28, 2010 at 11:34 AM, Marcin Misiewicz misq...@gmail.comwrote: I guess,

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