Re: GWT not using CssResources??

2010-05-03 Thread Ed
Hi, I opened an issue in the issue tracker concerning above problems: http://code.google.com/p/google-web-toolkit/issues/detail?id=4903 Let's hope enough people experience the same problems (and vote the issue) such that improvements are made. -- You received this message because you are subscri

Re: GWT not using CssResources??

2010-05-02 Thread Ed
Thanks Stefan, interesting thoughts. Don't forget to add/insert examples sometimes as otherwise it's very hard to follow through just "paper"... :( For example: the problems you point out are better understood through a concrete example.. And don't forget that the UIBinder has just came out, and fa

Re: GWT not using CssResources??

2010-05-02 Thread Stefan Bachert
Hi Ed, Regarding UI-Binder The fact that others are using similar concepts like Ui-Binder does not make it right. It just make it common. (150 years ago woman suffrage was not common, but would you say it was right what 150 years ago was common?) What is wrong with UI-Binder? a) it is an other XML

Re: GWT not using CssResources??

2010-05-01 Thread Ed
Thanks Sefan, I agree with you on some of the issues you discuss, but not all of them. You are right that GWT's ClientBundle/CssResource concepts still have some issues, just like their widget design (some of my issues are in the issue tracker). But I don't think the UIBinder is a step back. Don't

Re: GWT not using CssResources??

2010-05-01 Thread Ed
And Stefan answered this back: Hi Stefan, > Looked at your project and played with it, but I don't think it's not solving > my problem and it's not the way I like to work with styles. > Why should I want to put my style value's in code like you do in your > DecorInterface? Because you want to h

Re: GWT not using CssResources??

2010-05-01 Thread Ed
Hm. The disadvantage of Gmail is that don't even realize that your are mailing a person or group (if you don't pay good attention like I did)... Anyway, I received an email from Stefan about this a1decorator project and this was mine reaction: Hi Stefan, --- Looked at your project

Re: GWT not using CssResources??

2010-04-29 Thread Ed
> wait a few days. I am about to publish a project which probably covers > your issue, Looking forward to it and hope it will give answers to the problems listed above. On Apr 29, 9:02 am, Stefan Bachert wrote: > Hi Ed, > > wait a few days. I am about to publish a project which probably covers >

Re: GWT not using CssResources??

2010-04-29 Thread Ed
> Have you guys seen > this:http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/... Yep, I have the GWT source in my Eclipse but neither could I find any answers their :( On Apr 29, 4:42 am, Mike wrote: > Have you guys seen > this:http://code.google.com/p/google-web-toolkit/so

Re: GWT not using CssResources??

2010-04-29 Thread Stefan Bachert
Hi Ed, wait a few days. I am about to publish a project which probably covers your issue, Stefan Bachert http://gwtworld.de On 27 Apr., 16:00, Ed wrote: > > Have you had a read > > through:http://code.google.com/webtoolkit/doc/latest/DevGuideClientBundle.htm... > > Of course, every line >

Re: GWT not using CssResources??

2010-04-28 Thread Mike
Have you guys seen this: http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/test/com/google/gwt/uibinder/test/client/WidgetBasedUi.ui.xml ? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email

Re: GWT not using CssResources??

2010-04-28 Thread Tsukasa
In fact I'm really interrested in this too and hope to find my time writing some little easy example in about a week. unfortunately my schedule up to then is ... (don't make me say it...) If anyone else might want to fetch up the idea earlier I won't be disapointed -- You received this message b

Re: GWT not using CssResources??

2010-04-28 Thread Ahmed Sief
From: Ed Bras To: google-web-toolkit@googlegroups.com Sent: Tue, April 27, 2010 6:10:30 PM Subject: Re: GWT not using CssResources?? > I think the @External annotation on your Css could help you there, too Like mentioned in the doc, this is for leg

Re: GWT not using CssResources??

2010-04-28 Thread Ed
> Because noone took the time to do it? (and GWT being a toolkit, it has > to account for both backwards and forwards compat, so it must be well > thought out from the beginning) That's understandable, but still, like you mention below, they do use it widgets like Tree, etc.. > What's the problem

Re: GWT not using CssResources??

2010-04-27 Thread Thomas Broyer
On 27 avr, 10:43, Ed wrote: > Why is GWT not using CssResource to set styles on his components like > a Button/Label? Because noone took the time to do it? (and GWT being a toolkit, it has to account for both backwards and forwards compat, so it must be well thought out from the beginning) > I

Re: GWT not using CssResources??

2010-04-27 Thread Ed Bras
> I think the @External annotation on your Css could help you there, too Like mentioned in the doc, this is for legacy support (I use it in other places). I want to support the correct way of using CssResource, but don't understand very well how to use it in the case below. Ed On Tue, Apr 27, 20

Re: GWT not using CssResources??

2010-04-27 Thread Tsukasa
I think the @External annotation on your Css could help you there, too - if I have understood all latest posts correctly. Try the following documentation http://code.google.com/p/google-web-toolkit/wiki/CssResource#External_and_legacy_scopes On 27 Apr., 16:00, Ed wrote: > > Have you had a read

Re: GWT not using CssResources??

2010-04-27 Thread Ed
> Have you had a read > through:http://code.google.com/webtoolkit/doc/latest/DevGuideClientBundle.htm... Of course, every line > What are you trying to do? Do you have some code samples? Suppose I have my own button class called Button and want to use CssResource to set the styles in such a

Re: GWT not using CssResources??

2010-04-27 Thread Mike
Ed, What are you trying to do? Do you have some code samples? Have you had a read through: http://code.google.com/webtoolkit/doc/latest/DevGuideClientBundle.html#CssResource Cheers On Apr 27, 3:43 am, Ed wrote: > Why is GWT not using CssResource to set styles on his components like > a Butto

GWT not using CssResources??

2010-04-27 Thread Ed
Why is GWT not using CssResource to set styles on his components like a Button/Label? I find it hard to use CssResources on reusable widgets, such that the styles can still be changed through the API of the widget by the outside world :(.. Maybe GWT experiences the same problems ?... What am I mi