Re: Hello Noob question

2024-03-12 Thread 'Tim Macpherson' via GWT Users
On the other hand gwt polymer is unmaintained for 6 years. Also it draws in elemental, which is nowadays replaced by elemental2. The 2 dependencies didn't cause problems previously but maybe someone else can advise. Yahoo Mail: Search, Organize, Conquer On Tue, Mar 12, 2024 at 23:20, Vijay

Re: Hello Noob question

2024-03-12 Thread Vijay Kishen Hampapur
Thanks , I figured out that the parent webapp didnt have the dependency called out. Followed by resources of the .nocache.js not being part of the jetty xml. Fixed and working now Thanks On Tue, Mar 12, 2024 at 9:02 AM 'tim_mac...@yahoo.co.uk' via GWT Users wrote: > > I am hoping to continue

Re: Hello Noob question

2024-03-12 Thread 'tim_mac...@yahoo.co.uk' via GWT Users
I am hoping to continue using this with upgrade to gwt 2.11.0 , gwt-maven-plugin 1.1.0 , java source level 11. I checked it as far as calling Polymer.startLoading() Polymer.importHref( .. ) No errors so far. in module.gwt.xml I presume you have: did you add the dependency in the

Hello Noob question

2024-03-12 Thread Vijay H
Created a starter using the modular-webapp archetype, and am trying to change the client module to use polymer elements and running into these sort of errors. Before I debug too far wanted to check if this is something that is doable or even recommended. This is for a class project. > Loading

[gwt-contrib] Just to say hello

2016-01-29 Thread Issam Bakrim
Hi Folks I'm a new member here,I'm a contributor at a company developping application with GWT, i will developpe certainly a project using GWT Framework, so i will comback to you with my questions Soon.. -- You received this message because you are subscribed to the Google Groups "GWT

[gwt-contrib] Re: Just to say hello

2016-01-29 Thread Jens
Welcome, for general GWT questions please use https://groups.google.com/forum/#!forum/google-web-toolkit This group is for questions about contributing to GWT SDK itself. -- J. -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To

Re: JsInterop hello world

2015-09-17 Thread Cristiano
Hi Brian, I had problems similar to you when studying JsInterop, so I've tried your code. I've forked your repo (see https://github.com/cristcost/jspoc) and I have made it work but with some considerations to take into account. Other than the problems on using JsInterop annotations as reported

Re: JsInterop hello world

2015-09-17 Thread Cristiano
Update: with the sso linker the project responds as expected: the GWT code is available as soon as page has loaded You could check it out on this branch: https://github.com/cristcost/jspoc/tree/test_with_sso note that: - with sso linker super dev mode don't work (I've worked manually

Re: JsInterop hello world

2015-09-17 Thread Brian Pedersen
It all makes perfectly sense now, thank's a lot for taking your time to clarify your findings. I like the concept of the sso linker, a pity it doesn't work with super dev mode yet. Using JsInterop with the xsiframe linker in super dev mode works equally bad for me, but maybe that's just me

Re: JsInterop hello world

2015-09-17 Thread Cristiano
I use gwt-maven-plugin 2.8.0-SNAPSHOT for no reason in particular, but if you use 2.7.0 and you want to compile correctly with version 2.8.0 of GWT, remember to override the plugin configuration like explained in this page

Re: JsInterop hello world

2015-09-16 Thread Brian Pedersen
default namespace, should probably go in a > package-info.java file > public class JsHello { > public String sayHello(String name) { >return "Hello " + name; > } > } > > With the above you can do > > > var hello = new poc.JsHello(); hello.sayHello("

Re: JsInterop hello world

2015-09-15 Thread Brian Pedersen
-steps in JsInterop, exposing a Java class to > javascript, and I can't seem to figure out what I am doing wrong. > > *My java class looks like this:* > @JsExport("poc.Hello") > public class JsHello { > public String sayHello(String name) { > return "Hello "

Re: JsInterop hello world

2015-09-15 Thread Jens
@JsNamespace("$wnd.poc") @JsExport("Hello") @JsType public class JsHello { public String sayHello(String name) { return "Hello " + name; } } I think the above should work. But there is already a commit pending which introduces new annotations for JsInterop

Re: JsInterop hello world

2015-09-15 Thread Jens
@JsNamespace("poc") // the default namespace, should probably go in a package-info.java file public class JsHello { public String sayHello(String name) { return "Hello " + name; } } With the above you can do var hello = new poc.JsHello(); hello.sayHello("World");

JsInterop hello world

2015-09-15 Thread Brian Pedersen
So I am doing my first baby-steps in JsInterop, exposing a Java class to javascript, and I can't seem to figure out what I am doing wrong. *My java class looks like this:* @JsExport("poc.Hello") public class JsHello { public String sayHello(String name) { return "

Error Address already in use: JVM_Bind when running Hello GWT app in NetBeans 7.3 Beta 2

2012-12-08 Thread otosaat
I followed the instruction from the following link: http://netbeans.org/kb/docs/web/quickstart-webapps-gwt.html#creating and got the following error when I run the project: [gae:run] Monitor failed to start java.net.BindException: Address already in use: JVM_Bind at

Re: Error Address already in use: JVM_Bind when running Hello GWT app in NetBeans 7.3 Beta 2

2012-12-08 Thread otosaat
of choosing Google Web Toolkit from the Framework list, I chose it from the Project dialog box. That was the problem. I re-created another Hello project and it works now. On Saturday, December 8, 2012 1:25:57 PM UTC-5, otosaat wrote: I followed the instruction from the following link: http

Hello, please I need your help with did you forget to inherit a required module

2012-11-26 Thread Nicolas Moraes
Dear all: When I running my GWT app, I have the following error : No source code is available for type java.security.SecureRandom; did you forget to inherit a required module. This error occurs after include a security class, http://www.mindrot.org/projects/jBCrypt/ I read a lot of

Re: Hello, please I need your help with did you forget to inherit a required module

2012-11-26 Thread Alberto Mancini
Hi, afaik java.security is not in the GWT's emulated jre so you should provide an implementation for SecureRandom (through super-source, see https://developers.google.com/web-toolkit/doc/latest/DevGuideOrganizingProjects ) to be able to use jBCrypt unmodified. Ciao, Alberto On Mon, Nov 26,

GWT tutorial, UiBinder Hello World with Eclipse from Ground-up

2012-02-19 Thread infovation Associates
Hello sir, posting this link here since i think many newbies will be here hoping to learn GWT. *GWT UiBinder Hello world with Eclipse from Ground-up (without generated GWT Sample code project), but here we wont cover installation of Chrome or Eclipse or GPE, since there are tons of good

Hello

2011-10-16 Thread Dhruv April
Hey,I Please Intrt me.:) -- 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 this group, send email to

hello

2011-07-19 Thread 袁红杰
hello,i sent so much email,i don´t know why and how to quit! -- 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 this group, send email to google-web

help needed in debuging the hello world web application

2011-02-23 Thread thahir hussain
hi i am getting this error when i run my hello world application in eclipse Status: 404 Not Found Content-Type: text/html; charset=utf-8 Cache-Control: no-cache Expires: Fri, 01 Jan 1990 00:00:00 GMT Content-Length: 0 need help pls help -- You received this message because you are subscribed

Hello Sample doesn't work in Chrome. Issues with invoking onScriptLoad()

2010-09-30 Thread Denis Vilyuzhanin
I compiled Hello Sample from GWT SDK and tried to run it in Chrome. But it doesn't work. Only empty page. In IE and Firefox it works fine. After some debugging I found that cause of this. In last rows of any *.cache.html (not hello.nocache.js) gwt compiler append following code

Re: Hello Sample doesn't work in Chrome. Issues with invoking onScriptLoad()

2010-09-30 Thread Thomas Broyer
On Sep 30, 10:15 am, Denis Vilyuzhanin dandsoft@gmail.com wrote: I compiled Hello Sample from GWT SDK and tried to run it in Chrome. But it doesn't work. Only empty page. In IE and Firefox it works fine. After some debugging I found that cause of this. In  last rows of any *.cache.html

Re: Hello Sample doesn't work in Chrome. Issues with invoking onScriptLoad()

2010-09-30 Thread Denis Vilyuzhanin
Thanks, it was surprise for me, that chrome has such policy about local files. On Sep 30, 3:11 am, Thomas Broyer t.bro...@gmail.com wrote: On Sep 30, 10:15 am, Denis Vilyuzhanin dandsoft@gmail.com wrote: I compiled Hello Sample from GWT SDK and tried to run it in Chrome. But it doesn't

Re: Hello Sample doesn't work in Chrome. Issues with invoking onScriptLoad()

2010-09-30 Thread Thomas Broyer
On Sep 30, 12:44 pm, Denis Vilyuzhanin dandsoft@gmail.com wrote: Thanks, it was surprise for me, that chrome has such policy about local files. Scenario: 1. make a request to file:///etc/passwd to grab its content (GET with XMLHttpRequest, or loading it in an iframe) 2. make a cross-site

Hello.. A gift!!!

2010-06-28 Thread Lei Zhen
Dear friend, One of my good friend is having his birthday celebration very soon,and I bought a digital camera for him as a birthday gift at an international trade company www.snnsn2.com ,I received the goods today,it has very good quality and affordable price. The company also sells some

Re: Hello.. A gift!!!

2010-06-28 Thread Gal Dolber
what the hell 2010/6/28 Lei Zhen zl13354...@gmail.com Dear friend, One of my good friend is having his birthday celebration very soon,and I bought a digital camera for him as a birthday gift at an international trade company www.snnsn2.com ,I received the goods today,it has very good

Hello

2010-04-15 Thread Brad Stimpson
http://sites.google.com/site/dfgbn467u5jnbd/ndds5w -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

[gwt-contrib] Hello DialogBoxParser

2009-11-09 Thread bobv
LGTM, with nits. http://gwt-code-reviews.appspot.com/97806/diff/1001/56 File user/src/com/google/gwt/uibinder/rebind/XMLElement.java (right): http://gwt-code-reviews.appspot.com/97806/diff/1001/56#newcode50 Line 50: @SuppressWarnings(deprecation) This is a big class.

[gwt-contrib] Re: Hello DialogBoxParser

2009-11-09 Thread rjrjr
Reviewers: bobv, Message: Nits addressed, committed tr...@6774, 2.0 soon. Description: DialogBox is weird--it implements both HasHTML and HasWidgets. This confuses the bejeebers out of UiBinder and leads it to generate bad code, so a custom parser is required. I took this excuse to generalize

[gwt-contrib] Re: Hello DialogBoxParser

2009-11-09 Thread rjrjr
http://gwt-code-reviews.appspot.com/97806/diff/1001/56 File user/src/com/google/gwt/uibinder/rebind/XMLElement.java (right): http://gwt-code-reviews.appspot.com/97806/diff/1001/56#newcode50 Line 50: @SuppressWarnings(deprecation) On 2009/11/09 18:33:27, bobv wrote: This is a big class. Done.

[gwt-contrib] Re: Hello DialogBoxParser

2009-11-09 Thread rjrjr
Actually, re: building the mocks out of class literals: No. I had it working with literals originally and then I took them away. The test ran twice as fast (!), presumably because of all the class init code that didn't run. Note also that the mock resources are very low fidelity, not even

[gwt-contrib] Re: Hello EnumAttributeParser

2009-11-03 Thread rjrjr
tr...@6596, releases/2...@6599 http://gwt-code-reviews.appspot.com/91807 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Hello EnumAttributeParser

2009-11-02 Thread jgw
On 2009/11/02 22:37:17, Ray Ryan wrote: Review requested Mr. Joel. I promise to add tests before committing, just tidying them up now. LVVGTM. http://gwt-code-reviews.appspot.com/91807 --~--~-~--~~~---~--~~

Re: The output directory for the project should be set to /Hello/war/WEB-INF/classes

2009-10-30 Thread Nathan Wells
look at this issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=3583q=build%20folder vote for it, please. On Oct 26, 1:03 pm, thirdnormal thirdnor...@gmail.com wrote: I am setting up the Hello sample GWT project using the Google Plugin for Eclipse. However when I change

The output directory for the project should be set to /Hello/war/WEB-INF/classes

2009-10-26 Thread thirdnormal
I am setting up the Hello sample GWT project using the Google Plugin for Eclipse. However when I change the output directory for the compiled code (in the Eclipse build path configuration) I get the following error message in my problems view... The output directory for the project should be set

[gwt-contrib] [google-web-toolkit] r6293 committed - Remove the spurious directories like Hello/linux, Hello/windows, Hello...

2009-10-02 Thread codesite-noreply
Revision: 6293 Author: amitman...@google.com Date: Fri Oct 2 18:14:10 2009 Log: Remove the spurious directories like Hello/linux, Hello/windows, Hello/mac in the distribution. Ensure that the build files get generated in the correct locations. Patch by: amitmanjhi Review by: rjrjr (TBR

[gwt-contrib] Re: Hello ui:style

2009-09-03 Thread jgw
On 2009/09/03 04:05:36, Ray Ryan wrote: Okay, name - field was trivial, done. LGTM so far. I modified a bit of the mail sample to use this, and it worked a charm. A couple of minor nits: - I assume that DS_Store and ButtonTest are accidentally attached to this patch. - Could use some

[gwt-contrib] Re: Hello ui:style

2009-09-03 Thread jgw
On 2009/09/03 17:40:20, jgw wrote: On 2009/09/03 04:05:36, Ray Ryan wrote: Okay, name - field was trivial, done. LGTM so far. I modified a bit of the mail sample to use this, and it worked a charm. A couple of minor nits: - I assume that DS_Store and ButtonTest are accidentally attached

[gwt-contrib] Re: Hello ui:style

2009-09-03 Thread rjrjr
Thanks. Updated with some checkstyle fixes. Running tests, should submit soon. http://gwt-code-reviews.appspot.com/64801 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Hello ui:style

2009-09-02 Thread rjrjr
.) Please review this at http://gwt-code-reviews.appspot.com/64801 Affected files: A samples/hello/src/com/google/gwt/sample/hello/client/.DS_Store A user/src/com/google/gwt/uibinder/client/AbstractUiBinder.java M user/src/com/google/gwt/uibinder/parsers/FieldInterpreter.java A user/src

[gwt-contrib] Re: Hello ui:style

2009-09-02 Thread rjrjr
Okay, name - field was trivial, done. http://gwt-code-reviews.appspot.com/64801 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Hello UiBinder

2009-08-29 Thread Xijiang Miao
Yes. That's what I did. Thanks! I have to enable the animation to use two nested DisclosurePanel. Otherwise, the parent disclosure panel does not resize properly when the child panel is opening/closing. On Sun, Aug 23, 2009 at 1:57 PM, Amir Kashani amirkash...@gmail.com wrote: Xijiang, Take

[gwt-contrib] Re: Hello UiBinder

2009-08-12 Thread Venkatesh Babu
Hi All, Pardon me for my ignorance, but just wanted to know - Is the UiBinder source code available for public review/use? If so, where can I get the svn location or the URL to download the source code? Would really appreciate if somebody throws light on this. Thank you, Venkatesh On Aug 6,

[gwt-contrib] Re: Hello UiBinder

2009-08-12 Thread Amir Kashani
Hi Venkatesh, The code is only available as part of GWT trunk; it's not a separately downloadable library. To get going with the trunk, take a look at: http://code.google.com/webtoolkit/makinggwtbetter.html#workingoncode - Amir On Wed, Aug 12, 2009 at 2:27 PM, Venkatesh Babu

[gwt-contrib] Re: Hello UiBinder

2009-08-06 Thread Andrés Testi
UiBinder is awesome! An extra degree of decoupling, could be done by adding the next stuff to the UiBinder interface: public interface UiBinderU, O { U createAndBindUi(O owner); public static interface PairU, O{ R getRoot(); O getOwner(); } PairU, O createAndBindUi(); }

[gwt-contrib] Re: Hello UiBinder

2009-08-06 Thread Ray Ryan
Submitted at r5896 On Thu, Aug 6, 2009 at 7:39 AM, Andrés Testi andres.a.te...@gmail.comwrote: UiBinder is awesome! An extra degree of decoupling, could be done by adding the next stuff to the UiBinder interface: public interface UiBinderU, O { U createAndBindUi(O owner); public

[gwt-contrib] Re: Hello UiBinder

2009-08-05 Thread brett.wooldridge
Just a question, and a comment. First the comment. Thank you for getting this up into the repo, in whatever state. Second, it was commented that Adwords and a few other projects have vetted this over the past year. How does this jibe with the deficiencies outlined? For example, not being able

[gwt-contrib] Hello UiBinder

2009-08-04 Thread rjrjr
Reviewers: jgw, Description: Introduces UiBinder http://code.google.com/p/google-web-toolkit-incubator/wiki/UiBinder The actual source code has been through thorough code review over the last year+ of use in various Google projects, including the new AdWords UI and Wave. Feedback and criticism

[gwt-contrib] Re: Hello UiBinder

2009-08-04 Thread Amir Kashani
Hello, yourself. This looks absolutely awesome! Thank you! - Amir On Tue, Aug 4, 2009 at 10:44 AM, rj...@google.com wrote: Reviewers: jgw, Description: Introduces UiBinder http://code.google.com/p/google-web-toolkit-incubator/wiki/UiBinder The actual source code has been through

[gwt-contrib] Re: Hello UiBinder

2009-08-04 Thread rjrjr
On 2009/08/04 17:44:38, Ray Ryan wrote: A question for the group: the stuff under rebind and parsers should not be considered public API, it's just not ready for that. Is javadoc to that effect enough of a deterrent? (Although I suppose the fact that you can't actually make your own parsers and

[gwt-contrib] Re: Hello UiBinder

2009-08-04 Thread jgw
On 2009/08/04 18:50:55, Ray Ryan wrote: On 2009/08/04 17:44:38, Ray Ryan wrote: A question for the group: the stuff under rebind and parsers should not be considered public API, it's just not ready for that. Is javadoc to that effect enough of a deterrent? (Although I suppose the fact that

[gwt-contrib] Re: Hello UiBinder

2009-08-04 Thread Ray Ryan
I was thinking 2.1, actually. On Tue, Aug 4, 2009 at 12:31 PM, j...@google.com wrote: On 2009/08/04 18:50:55, Ray Ryan wrote: On 2009/08/04 17:44:38, Ray Ryan wrote: A question for the group: the stuff under rebind and parsers should not be considered public API, it's just not ready

[gwt-contrib] Re: Hello UiBinder

2009-08-04 Thread jgw
LGTM, based primarily on the fact that I know it works already, and with the knowledge that there are some tasks left to be completed (like the parser API). I also assume that at some point we'll need to move the sample code out into a proper sample, and that we'll want to come back and change

[gwt-contrib] Re: Hello UiBinder

2009-08-04 Thread Joel Webber
Ok, then we'll need to be pretty clear about that in the documentation, because it's a pretty serious landmine (i.e., in that existing projects could easily have some widgets that couldn't be directly used with UiBinder without hackery). As an example, I'm going to have to add some parsers for

[gwt-contrib] Re: Hello UiBinder

2009-08-04 Thread Ray Ryan
The need for a custom parser is actually pretty rare. Any widget with a zero args constructor and whose attributes are set via java bean style set*() methods will just work, no annotations required. If you really need constructor arguments, the @UiConstructor annotation will make it work. rjrjr

[gwt-contrib] Re: Hello UiBinder

2009-08-04 Thread Amir Kashani
As Ray mentioned, one has a pretty simple workaround and two is pretty uncommon. I'm a little more concerned about the third case. A few examples of issue with internally used widgets I've created: - A StackPanel replacement that adds animation support. The only workaround I can think of is

[gwt-contrib] Re: Hello UiBinder

2009-08-04 Thread Ray Ryan
I share your concern, Amir, but I'm even more afraid of a) providing an ill considered API for custom parsers and b) delaying 2.0. I'm pretty confident we can limp along without them for a dot release. On Tue, Aug 4, 2009 at 1:36 PM, Amir Kashani amirkash...@gmail.com wrote: As Ray mentioned,

[gwt-contrib] Re: Hello UiBinder

2009-08-04 Thread John Tamplin
On Tue, Aug 4, 2009 at 4:49 PM, Ray Ryan rj...@google.com wrote: I share your concern, Amir, but I'm even more afraid of a) providing an ill considered API for custom parsers and b) delaying 2.0. I'm pretty confident we can limp along without them for a dot release. You could move it into an

[gwt-contrib] Re: Hello UiBinder

2009-08-04 Thread rjrjr
http://gwt-code-reviews.appspot.com/51831/diff/1/2 File eclipse/user/.classpath (right): http://gwt-code-reviews.appspot.com/51831/diff/1/2#newcode19 Line 19: classpathentry kind=var path=GWT_TOOLS/lib/easymock/easymockclassextension.jar

[gwt-contrib] Re: Hello UiBinder

2009-08-04 Thread amitmanjhi
LGTM for changes to tools/api-checker/config/gwt16_20userApi.conf http://gwt-code-reviews.appspot.com/51831/diff/1017/1019 File tools/api-checker/config/gwt16_20userApi.conf (right): http://gwt-code-reviews.appspot.com/51831/diff/1017/1019#newcode82 Line 82: :com.google.gwt.uibinder.parsers\

[gwt-contrib] Re: Hello UiBinder

2009-08-04 Thread amitmanjhi
http://gwt-code-reviews.appspot.com/51831/diff/1017/1019 File tools/api-checker/config/gwt16_20userApi.conf (right): http://gwt-code-reviews.appspot.com/51831/diff/1017/1019#newcode68 Line 68: :user/src/com/google/gwt/user/client/rpc/core/java/util/LinkedHashMap_CustomFieldSerializer.java\ add

Re: HELLO MODERATOR

2009-06-11 Thread Sumit Chandel
Hi eags, Sorry for the delay in moderation. Unfortunately I'm the primary moderator for the forum, and so posting in a different timezone does sometimes add a bit more delay than I'd like to a post. Perhaps I should try a polyphasic sleep schedule :-) Regarding moderated posts - you should be

HELLO MODERATOR

2009-06-09 Thread eags
Hi. I posted a comment last night starting a new thread called Very basic LoginSecurityFAQ and GWT-RPC questions. I guess because of the moderation it wasn't actually posted until about a half an hour ago but the timestamp on it still is for last night which means that it is buried in last

[gwt-contrib] [google-web-toolkit commit] r4404 - releases/1.6/eclipse/samples/Hello

2009-01-07 Thread codesite-noreply
Author: sco...@google.com Date: Wed Jan 7 17:05:04 2009 New Revision: 4404 Modified: releases/1.6/eclipse/samples/Hello/Hello compile.launch releases/1.6/eclipse/samples/Hello/Hello.launch Log: Bump VM memory. Modified: releases/1.6/eclipse/samples/Hello/Hello compile.launch

Re: Hello Everybody - need help with an GWT interface

2008-12-10 Thread Sumit Chandel
Hi Thib'z, Once you've coded up your GWT application, you would then deploy it by running the GWT cross-compiler over your source code to generate the corresponding JavaScript and HTML files. If you used the applicationCreator script to create your application, there will be an emitted

Hello Everybody - need help with an GWT interface

2008-12-08 Thread Thib'z
Hello everybody, I'm a beginner with GWT and JavaScript, and I would like to create a simple interface, with a TabPanel, including 3 tabs, and each one including 3 groups of 7 ChekBoxes(Led Controllers), and a Button per Tab. But I having a little trouble declaring the Checkboxes, and including

Hello~. How about this realtime chatting program by using GWT 1.5 ?

2008-11-18 Thread Macula
AKA Tost Chatting Programming. a href=http://tost.rontab.com; target=_blankHttp://tost.rontab.com /abr / p iframe src=http://tost.rontab.com/com.rontab.tost.chat.Tost/tost.html? room=Bake width=600 height=500 frameborder=0/iframe --~--~-~--~~~---~--~~ You

[gwt-contrib] [google-web-toolkit commit] r3789 - branches/1_6_events/samples/hello/src/com/google/gwt/sample/hello/client

2008-10-21 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Tue Oct 21 07:20:02 2008 New Revision: 3789 Modified: branches/1_6_events/samples/hello/src/com/google/gwt/sample/hello/client/Hello.java Log: Fixing bad variable name. Modified: branches/1_6_events/samples/hello/src/com/google/gwt/sample/hello/client

[gwt-contrib] Re: Code Review: Visualization API, improved hello world example

2008-10-20 Thread Eric Ayers
a TabPanel to the hello world example, with a tab for each example. I added an example for the new DataView. Thanks, Uwe -- Eric Z. Ayers - GWT Team - Atlanta, GA USA http://code.google.com/webtoolkit/ --~--~-~--~~~---~--~~ http://groups.google.com/group/Google

[gwt-contrib] Re: Code Review: Visualization API, improved hello world example

2008-10-20 Thread Eric Ayers
with a new instance before adding it. In this case, you might want to use a Grid or FlexTable to hold your 2 visualizations and labels side by side. 2008/10/14 Uwe Maurer [EMAIL PROTECTED] Hi, I added a TabPanel to the hello world example, with a tab for each example. I added an example

[gwt-contrib] Re: Code Review: Visualization API, improved hello world example

2008-10-20 Thread Uwe Maurer
want to use a Grid or FlexTable to hold your 2 visualizations and labels side by side. 2008/10/14 Uwe Maurer [EMAIL PROTECTED] Hi, I added a TabPanel to the hello world example, with a tab for each example. I added an example for the new DataView. Thanks, Uwe -- Eric Z. Ayers

[gwt-contrib] Re: Code Review: Visualization API, improved hello world example

2008-10-20 Thread Uwe Maurer
Hi Eric, thanks for the review! The new patch is attached. On Mon, Oct 20, 2008 at 3:24 PM, Eric Ayers [EMAIL PROTECTED] wrote: General: I see this coming out a lot in the hosted mode shell window - do you think it is from our visualization wrappers? [WARN] Malformed JSNI reference

[gwt-contrib] Re: Code Review: Visualization API, improved hello world example

2008-10-20 Thread Eric Ayers
LGTM except for resizing code below. If you don't want the resizing behavior after all, just expunge it. On Mon, Oct 20, 2008 at 3:11 PM, Uwe Maurer [EMAIL PROTECTED] wrote: Hi Eric, thanks for the review! The new patch is attached. On Mon, Oct 20, 2008 at 3:24 PM, Eric Ayers [EMAIL

[gwt-contrib] Code Review: Visualization API, improved hello world example

2008-10-14 Thread Uwe Maurer
Hi, I added a TabPanel to the hello world example, with a tab for each example. I added an example for the new DataView. Thanks, Uwe --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors