Re: GWT-ext or ext-GWT?

2008-11-05 Thread zebulon303
I am trying to use ext-gwt for a few days, and I get crazy because of the really poor documentation available, you only have the code to understand what you are doing, and not enough general guidelines. I don't know how it is for GWT ext, but I will definitely have a look. I am really new with

Re: GWT-ext or ext-GWT?

2008-11-05 Thread yunhui song
I've used gwt-ext for about one month and used that for a quite complex real world project. I've also tried to use ext-gwt.(It seems that ext-gwt support ext2.2 but gwt-ext suport 2.0.2 and lower version). From my current understanding, gwt-ext is very stable and has much more features that

Re: Reading XML file from localhost

2008-11-05 Thread mives29
Oh. I didnt know that! Thanks a lot! Will try to modify it. Thanks again. mives29 On Nov 5, 3:31 pm, Lothar Kimmeringer [EMAIL PROTECTED] wrote: mives29 schrieb: requestBuilder = new RequestBuilder(RequestBuilder.GET,url); requestBuilder.sendRequest(null,xmlRcb); doc = xmlRcb.getDoc();  

Re: Dynamically generating meta-tag for specifying locale

2008-11-05 Thread Martin Trummer
here's what we do: very simple java script (in the header section of the .html file) of course the accept-language approach is much better and I also consider implementing that approach: some day when I have some spare time :) ... script type=text/javascript var lang=en;

Response from Server is very slow

2008-11-05 Thread livinglegends
Hi to All, I am newbie to this group. I have one critical issue. Please help me regarding this. I have some performance related issue with GWT-RPC. I have create one method on server side which will fetch data from database, create one POJO class for one record, store all POJO classes in

Vtype

2008-11-05 Thread Ton Carvalho
Hello, someone already used Vtypes, has some example of how to create a custom? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Russian GWT tutorial

2008-11-05 Thread GoCha
Русское ководство GWT http://gocha.org/index.php?option=com_contenttask=viewid=16Itemid=28 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Single application .. multiple RPC services

2008-11-05 Thread Muhannad
Hi, I want to build a website with (Home, about, products, ...) menu. I need to build multiple forms (panels), each panel corresponds to one menu item, e.g. aboutPanel for about menu item, productsPanel for products... Moreover, I would like to implement that panel in terms of RPC services; I

Re: clicking outside the TreeItem firing onTreeItemSelected event

2008-11-05 Thread Litty Preeth
Hi Walden, I tried using gwt-1.5.2 and gwt-1.5. If gwt-1.5.2 is used on IE6 it happens only for the child node. Root level nodes are working fine. But on IE7 and Firefox it is reproducible for all the nodes. If gwt-1.5 is used on IE6 everything works fine. But on Firefox it is reproducible for

Re: can the gwt compiler compile files outside the module

2008-11-05 Thread walden
AB, You could go that way. Cobbling together a module using a script will defeat some of your IDE features, though, depending on what IDE you use. GWT Modules are transparent and non-intrusive to javac compiling, so you should be able to accomplish what you need with a small number (one?) of

Re: Event driven communication between independent GWT modules

2008-11-05 Thread walden
Joe, Aha! moment: GWT is not Java. Walden On Nov 5, 2:00 am, JEA [EMAIL PROTECTED] wrote: Thanks to everyone who contributed their comments on this problem.  It has been tremendously educational for me.  This is my first crack at using GWT. To clarify, I am trying to send event messages

Re: Single application .. multiple RPC services

2008-11-05 Thread Muhannad
Hi, Okay, then how could I switch between my services when I click on one link? I mean, on the website's home page load, I will instantiate the default service (let's say homeService). Then on About Us link I have to switch to the aboutServie how could that switch be done? Is it enough to pass

GWT -ext

2008-11-05 Thread programmerajay
Hi all I have started to use GWT -ext and checking out its features Can anyone please list out the most coolest features of GWT-ext which dont have any problems to use with. This information might be useful to lot of people thinking about using GWT-ext Thanks

Re: Mysql usage using RPC in GWT

2008-11-05 Thread Lothar Kimmeringer
tapan schrieb: No i am talking about the gwt code for setting RequestBuilder. I can manage the php task on my on. Check out http://www.gwtapps.com/doc/html/com.google.gwt.http.client.html Regards, Lothar --~--~-~--~~~---~--~~ You received this message because

CwStackPanel sample - use of HTML in panel' header

2008-11-05 Thread Yefim
Hi I want to have an image+ text header for stackPanel and do exactly as it is done in getHeaderString() method in CwStackPanel sample. What I see on the screen is a chank of HTML (even if I do not include an image): TABLE cellSpacing=0 cellPadding=0TBODYTR TD style=VERTICAL-ALIGN: middle

Re: Response from Server is very slow

2008-11-05 Thread gregor
Hi, The short answer is don't fetch even 500 records in one go from the server - you should use a paging table of some sort. e.g. http://code.google.com/p/google-web-toolkit-incubator/wiki/PagingScrollTable regards gregor On Nov 5, 6:54 am, livinglegends [EMAIL PROTECTED] wrote: Hi to All,

how to set pushbutton font size?

2008-11-05 Thread mwaschkowski
I updated my css for a pushbutton to change the font size: .gwt-PushButton-up, .gwt-PushButton-up-hovering, .gwt-PushButton-up-disabled, .gwt-PushButton-down, .gwt-PushButton-down-hovering, .gwt-PushButton-down-disabled { margin: 0; text-decoration: none; font-size:6px; background:

Re: Single application .. multiple RPC services

2008-11-05 Thread Muhannad
Okay! thank you soo much. I'll try to do it and I'll keep you informed with the results :-) On Nov 5, 3:52 pm, Litty Preeth [EMAIL PROTECTED] wrote: Yesss if the URL ends with /about then the AboutService will be called. - Litty On Wed, Nov 5, 2008 at 7:18 PM, Muhannad [EMAIL PROTECTED]

Re: Single application .. multiple RPC services

2008-11-05 Thread Litty Preeth
Hi, The servlet-mapping tag of your web.xml is exactly for that purpose. servlet-mapping servlet-nameProductService/servlet-name url-pattern/product/url-pattern /servlet-mapping Regards, Litty On Wed, Nov 5, 2008 at 3:42 PM, Muhannad [EMAIL PROTECTED] wrote: Hi, I want to

Re: Pagination Widget?

2008-11-05 Thread Suri
Hi Issac, Since I'm still at a design level choosing my options, can I get a sample code for the PagingScrollTable to be able to evaluate its use for my purpose? I tried looking at the wiki for the incubator and all there was was a definition for some bean. Thanks Suri On Nov 5, 2:44 am, alex.d

Re: Response from Server is very slow

2008-11-05 Thread alex.d
What part of fetching is taking them most time? Reading from the DB? Creating POJO-Classes? Sending data? Profile your code, find out which part of it needs to be tweaked. But using some kind of paging, as gregor mentioned is good in any case. On 5 Nov., 15:56, gregor [EMAIL PROTECTED] wrote:

Re: Pagination Widget?

2008-11-05 Thread Isaac Truett
Suri, There's a demo in the Incubator that you could look at. The code for it can be viewed online or you can download and setup the Incubator project locally (be sure to grab GWT 1.5.3 if you don't already have it). Links below. Incubator SVN -

Re: CwStackPanel sample - use of HTML in panel' header

2008-11-05 Thread Thomas Broyer
On 5 nov, 16:15, gregor [EMAIL PROTECTED] wrote: I can't however see how to do this using images from an ImageBundle because myAbstractImageType.createImage() is not a string. but myAbstractImageType.getHTML() is! ;-) --~--~-~--~~~---~--~~ You received this

Re: GWT -ext

2008-11-05 Thread David Durham, Jr.
On Wed, Nov 5, 2008 at 7:48 AM, programmerajay [EMAIL PROTECTED] wrote: Can anyone please list out the most coolest features of GWT-ext which dont have any problems to use with. There are showcase apps that you should be able to find from the links below. Regarding problems ... your mileage

Re: GWT, Mootools and JQuery

2008-11-05 Thread David Durham, Jr.
On Wed, Nov 5, 2008 at 9:22 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Is there any incompatibilities with one of these javascript librairies? (Mootools and JQuery) I think you probably need to post this question to the Mootools and JQuery mailing lists. In general, JQuery does a good

Re: clicking outside the TreeItem firing onTreeItemSelected event

2008-11-05 Thread walden
Litty, Yeah, I see it now. It looks as if this is by design. If you need an area to the right of the Tree (outside the Tree but inside the ScrollPanel) where you can click without selecting a TreeItem (why?), then you can probably achieve that by setting the Tree's width so it does not fill

Problem with launch GWT

2008-11-05 Thread koko
Hi Guys: In my laptop I can't launch GWT host mode, Any one can help me please? Also I found if I disable my wireless connection it works fine?? What's worng ? Any one know ? Many Thanks!! The Error message is as below: ERROR The requested URL could not be retrieved

Create a stopwatch

2008-11-05 Thread sitaro
Hello! I need to create a stopwatch. All I need is to have a button to start and a button to stop, the start button click event will capture a time/ timestamp, the stop button event will capture another one. all I have to do is to subtract both imes and show it like hh:mm:ss. I guess it must be

How to create layout?

2008-11-05 Thread DevUnion
Hello All, I've started GWT studying few days ago. And I have a lot of questions. For example, I need to create next layout: + + | Logo Image Here |

An update on the RPC communication stops functioning when running with Internet Explorer issue

2008-11-05 Thread PJ
Hi, this is an update on the RPC communication stops functioning when running with Internet Explorer issue (http://groups.google.com/group/ Google-Web-Toolkit/tree/browse_frm/thread/2f7f9816e0578e0c/ 1e92873057a32710?hl=enrnum=1_done=%2Fgroup%2FGoogle-Web-Toolkit

Re: Bean Serialization Problem: com.google.gwt.user.client.rpc.SerializationException: Type 'com.dg.common.client.beans.DGUser' was not assignable to 'com.google.gwt.user.client.rpc.IsSerializable'

2008-11-05 Thread JM
ping2ravi I'm glad you came back to tell it's now working for you! But think of all those people with the same problem you had... like me. Any idea? My classes are implementing Serializable. It's working fine on my development environment (Windows). But now that I try an integration (Linux), I

Re: How to create layout?

2008-11-05 Thread gregor
Hi DevUnion, Please specify if nothing happening at all or alternatively things happening but not as you expect. Best to post your onModuleLoad() code that demonstrates your problem - much easier to diagnose. regards gregor On Nov 5, 11:06 am, DevUnion [EMAIL PROTECTED] wrote: Hello All,

Re: CwStackPanel sample - use of HTML in panel' header

2008-11-05 Thread gregor
@Thomas - doh! - you learn something every day. That's what I like about this group. @Yefim - that should do the trick! On Nov 5, 4:42 pm, Thomas Broyer [EMAIL PROTECTED] wrote: On 5 nov, 16:15, gregor [EMAIL PROTECTED] wrote: I can't however see how to do this using images from an

Re: Create a stopwatch

2008-11-05 Thread gregor
Hi Sitaro, if you happen to be declaring the start and stop Dates locally in your onClick methods, it probably won't work. Have you tried: // in your parent class somewhere Date start,stop; then in your onClick's... (note removal of type declarations) //In the start event start = new

Re: clicking outside the TreeItem firing onTreeItemSelected event

2008-11-05 Thread Litty Preeth
Walden, But then a user will expect to select a tree node by clicking on the node only rite? I dont feel that the node getting selected when you click else where is an expected behavior. - Litty On Wed, Nov 5, 2008 at 10:51 PM, walden [EMAIL PROTECTED] wrote: Litty, Yeah, I see it now. It

GWT Json + requestBuilder questions

2008-11-05 Thread newlis
Hello , the last weeks i have started using Gwt technology and i have to admit that is fascinating!! because of lack of examples, i have some questions. first of all , i m facing a compilation error. I did include inherits name=com.google.gwt.http.HTTP / in the gwt config file but when i m

gwt deployment with ant

2008-11-05 Thread arnaud
Hello every one, i want to deploy gwt application with ant.Who know how can i do it? Arnaud --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Response from Server is very slow

2008-11-05 Thread Peter D.
It is most likely the serialization and de-serialization that is taking the most time. There really isn't anything you can do about this because it's the way XML-RPC works. It converts all your objects into a really big string (xml) sends it over to the clients which then re-instantiates the

Re: gwt deployment with ant

2008-11-05 Thread Isaac Truett
Sure. First, you're going to want to compile your application. If you have a Java backend then you'll want to javac your server-side and common (shared by client and server) class. Then you'll want to compile your GWT client with GWTCompiler. You can find previous discussions about doing this on

state of hibernate + GWT 1.5

2008-11-05 Thread David Durham, Jr.
Hi all, What's the state of things with Hibernate and GWT 1.5. I've done some quick googling and I see reference to the following: 1 - hibernate4gwt 2 - Making hibernate persistent collections GWT serializable 3 - Just writing your pojo copy utility perhaps using beanlib I'm wondering if

Migrating from gwt 0.0.2415 to 1.5.3

2008-11-05 Thread Anti
I need the experts´ opinion. I am trying to carry out the mentioned migration, I have found several issues and I am wondering if it would be easier to rewrite most of my components instead of fixing issues line by line, what do you think? One example of my issues:

Re: layout problem, panel size ignores setCellHeight(50%) ?

2008-11-05 Thread JohnMudd
I'm back. I looked at gwt-ext but that doesn't look like a good alternative for me. I was having good luck with layouts, the demo page http://www.gwt-ext.com/demo/ is impressive but I would only recommend gwt-ext it you are absolutely sure you'll never need to deviate from the sample code in

Re: layout problem, panel size ignores setCellHeight(50%) ?

2008-11-05 Thread Ian Bambury
Hi John, Could you restate your problem as it is now. Ian http://examples.roughian.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: CwStackPanel sample - use of HTML in panel' header

2008-11-05 Thread Yefim
Thank you all. The problem was with stackPanel.add() call - I missed third argument asHTML ! With this, code from method getHeaderString() in CwStackPanel works great for text and images! On Nov 5, 8:48 am, Yefim [EMAIL PROTECTED] wrote: Hi I want to have an image+ text header for stackPanel

Where can I find a buildable revision ?

2008-11-05 Thread Alex Gorisse [pleyo]
Hello, The last revision (3962 at this time) doesn't allow to build a GWT project (with ant command) And many others before too... So, where can I find a revision number of the current gwt project ? (1.5.3 ) Which can build... Tanks in advance Alex PS : is there a tag somewhere of the

Re: GWT -ext

2008-11-05 Thread ajay jetti
Hey David thnks for replying I hear that because gwt-ext is created from wrapping native gwt widgets they are a bit slow to work out, is it true? does it really effect the page loading or other things yours --~--~-~--~~~---~--~~ You received this message

Re: Problem with launch GWT

2008-11-05 Thread ajay jetti
are you sure you are running the example on Hosted mode this error happens when you have incorrect proxy settings for internet please explain the steps you have followed and we may be able to help you yours --~--~-~--~~~---~--~~ You received this message because

Re: GWT Json + requestBuilder questions

2008-11-05 Thread ajay jetti
Hi Removing units with errors [ERROR] Errors in 'file:/home/tower/Book/G-example/src/org/example/ client/ajson.java' [ERROR] Line 45: RequestBuilder cannot be resolved to a type [ERROR] Line 45: RequestBuilder cannot be resolved to a type [ERROR] Line 45: RequestBuilder cannot be

Re: Single application .. multiple RPC services

2008-11-05 Thread Muhannad
Hi Walden, I'm not sure that I got your idea, but I always had a concern about that so I'll share it with you: 1. Does the GWT application have just one html page (module-name.html) that all the content should be rendered there? What I mean is that Litty wrote if the URL ends with /about

[gwt-contrib] Re: Review of Daniel's second patch.

2008-11-05 Thread daniel . libicki
looks good. thanks for the review and submit. http://galgwt-reviews.appspot.com/1 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] [google-web-toolkit commit] r3954 - branches/1_6_clean_events/tools/api-checker/config

2008-11-05 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Wed Nov 5 06:42:11 2008 New Revision: 3954 Modified: branches/1_6_clean_events/tools/api-checker/config/gwt14_15userApi.conf Log: commiting white list, including one bogus tab value entry in order to allow unit tests to run Modified:

[gwt-contrib] Re: RR: Adding Kelly's event dispatch app to reference on 1.5

2008-11-05 Thread Ray Ryan
Sounds like a plan. On Tue, Nov 4, 2008 at 6:08 PM, Emily Crutcher [EMAIL PROTECTED] wrote: Ray, I think you actually want to merge the entire 1.6 branch into the 1.6 clean events branch rather then copying the benchmark and update the branch.txt file in clean events with that info.

[gwt-contrib] [google-web-toolkit commit] r3958 - branches/1_6_clean_events/user/src/com/google/gwt/core/client/impl

2008-11-05 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Wed Nov 5 10:28:53 2008 New Revision: 3958 Modified: branches/1_6_clean_events/user/src/com/google/gwt/core/client/impl/RawJsMapImpl.java Log: fixing RawJsMapImpl to use right line endings Modified:

[gwt-contrib] FYI: code reviews done through our googlecode project will CC this list.

2008-11-05 Thread Kelly Norton
I just wanted people to be aware of this. I've changed the settings in our project to always CC the code review comments to this list. /kel -- If you received this communication by mistake, you are entitled to one free ice cream cone on me. Simply print out this email including all relevant

[gwt-contrib] [google-web-toolkit commit] r3959 - in trunk: dev/core/src/com/google/gwt/dev/jjs dev/core/src/com/google/gwt/dev/jjs/ast dev...

2008-11-05 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Wed Nov 5 11:21:13 2008 New Revision: 3959 Modified: trunk/dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java trunk/dev/core/src/com/google/gwt/dev/jjs/ast/JVariable.java trunk/dev/core/src/com/google/gwt/dev/jjs/impl/CodeSplitter.java

[gwt-contrib] [google-web-toolkit commit] r3960 - branches/oophm/user/src/com/google/gwt/core/client

2008-11-05 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Wed Nov 5 13:29:25 2008 New Revision: 3960 Added: branches/oophm/user/src/com/google/gwt/core/client/RunAsyncCallback.java (contents, props changed) Modified: branches/oophm/user/src/com/google/gwt/core/client/GWT.java Log: Merges revision 3664

[gwt-contrib] Re: how to use GWT.runAsync()?

2008-11-05 Thread Lex Spoon
On Fri, Oct 31, 2008 at 11:50 AM, Ian Petersen [EMAIL PROTECTED] wrote: The compiler already analyzes your code to do things like dead code removal. In other words, it already removes code from the output that it can prove will never be invoked. The support for runAsync is similar in that

[gwt-contrib] Re: RR: Adding Kelly's event dispatch app to reference on 1.5

2008-11-05 Thread Emily Crutcher
Why 1.5 rather the 1.6? On Wed, Nov 5, 2008 at 5:32 PM, Ray Ryan [EMAIL PROTECTED] wrote: Wait. What? When you said the entire 1.6 branch, did you mean the entire 1.5 branch? Here's how I understand the plan: Put this benchmark app patch into 1.5 1.5 - 1.6 1.6 - 1.6_clean_event Edit the

[gwt-contrib] Re: RR: Adding Kelly's event dispatch app to reference on 1.5

2008-11-05 Thread Ray Ryan
Because it tests the 1.5 api. If we want to run it again, it will be simplest if it lives with the 1.5 code. Adding it to reference should be safe, since reference is not part of the product jars. On Wed, Nov 5, 2008 at 3:26 PM, Emily Crutcher [EMAIL PROTECTED] wrote: Why 1.5 rather the 1.6?