Re: Questions on Compiling GWT App for deployment

2011-03-04 Thread Flori
Hi zixzgima, you only need to compile (javac) the 'shared' and 'server' folder (and maybe your service interfaces). What resources are compiled (javac) is a setting in the Eclipse Java Build Path. There you can deactivate the compilation of the 'client' folder. If you haven't got a server side

Re: Database jdbc

2011-03-04 Thread Mohammed Magdi
hi thanks for the link i do the conn but when i compile the project i get that erorr Compiling module com.test.dbc.TestDbC Validating newly compiled units [ERROR] Errors in 'file:/C:/Users/Magdi/Documents/MYWORK/WorkSpace/testDbC/src/com/test/dbc/client/DataBaseConn.java'

Re: Database jdbc

2011-03-04 Thread Alex D.
GWT library supports a limited subset of JRE. Some classes and packages are not and will never be supported. Those two are probably not supported, check this link: http://www.gwtapps.com/doc/html/jre.html And besides, when you're developing a client you wouldn't want to handle

SimpleBeanEditorDriver and MVP

2011-03-04 Thread Pavel Ko
I am a novice in GWT and MVP. I have question about Editors. Where should SimpleBeanEditorDriver located? in Presenter layer or in View layer? From one point of view SimpleBeanEditorDriver know about model, therefore it should be in Presenter(not in view). From another point of view

Re: RequestBuilder and StatusCode=0

2011-03-04 Thread Marco Gadaleta
Thank you for reply. In this link http://code.google.com/p/google-web-toolkit/issues/detail?id=3131#c46 i've read that i must add dependency to the project. How do i can do this? On Thu, Mar 3, 2011 at 7:36 PM, Y2i yur...@gmail.com wrote: Could be the Same Origin Policy violation that has been

Re: RequestBuilder and StatusCode=0

2011-03-04 Thread Alex D.
Same Origin Policy - you cannot call another host, or same host with different port. XML-RPC implementation will not allow you to do that. Actually, the XmlHttpRequest that is ajax core and used for all the calls will not allow you to do that (so the browser will actually limit you there). You

GWTTestSuite, junit, junitreport and ant

2011-03-04 Thread Chris McDonald
Hi, I am using gwt 2.2. I build and test with ant using the junit and junitreport tasks to create an output report. As I build GWTTestCases, I see that build performance has slowed since the runtime has to be started for each GWTTestCase. So, I created a GWTTestSuite as the doco recommends and

Re: Database jdbc

2011-03-04 Thread Paul Robinson
You cannot access JDBC directly from the client (GWT) code. You can only do it in the server (regular java) code. On 04/03/11 08:59, Mohammed Magdi wrote: hi thanks for the link i do the conn but when i compile the project i get that erorr Compiling module com.test.dbc.TestDbC Validating

Re: Highcharts - updating chart with data

2011-03-04 Thread Uemit
A couple of things: 1.) I am not sure if it is possible to access the series array of the JavaScriptObject instance option, the way you have done it. In hosted mode it should complain that there is no field series in options because options is a generic JavaScriptObject. 2.) You probably have

Re: RequestFactory, Editor Framework, and CellTable

2011-03-04 Thread Thomas Broyer
On Thursday, March 3, 2011 9:03:11 PM UTC+1, Colin Alworth wrote: I wonder if you can elaborate a bit more on some of your points, or maybe point out where the flaw in my thinking is. I think that a HasDataEditor could be used correctly to achieve this, except for two points:

Re: RequestFactory and GData glue

2011-03-04 Thread koma
Locator.create() Thomas' replied me : I believe you should do it in some kind of persist method in a service instead. create() is called when sending to the server a proxy that was created on the client-side (for EntityProxy-s; for ValueProxy-s, it's called for any object sent from the client

How to make DateBox as mandatory?

2011-03-04 Thread ALB-PSP-DV1
Hi, I am using GWT 2.1.1 . I hava a requirement using Datebox with popup datepicker. I want to make that field as mandatory. ie I cannot submit with empty value. However, if i validate on submit, If it is null, i observed that the value is set to previous selection. My code as as follows final

Re: ui:style src attribute causes error in the Google Eclipse plugin

2011-03-04 Thread Thomas Broyer
There's a deeper question there: are UiBinder ui.xml, LocalizableResources properties, ClientBundle css, images, etc. resources or sources? Because these are all about client-side code, which is meant to be given to the GWT Compiler, I tend to think of them as sources more than resources. In

CSS @font-face rules

2011-03-04 Thread Sebastian Beigel
Hi, I'm playing around with CSS3's @font-face. It doesn't work with GWT 2.2's CssResource unfortunately. I found this patch: http://gwt-code-reviews.appspot.com/943802 but it isn't applied to the 2.2 source code (though it seems to originate from pre-2.2 or event pre-2.1 times...) What's the

Re: RequestBuilder and StatusCode=0

2011-03-04 Thread Marco Gadaleta
http://code.google.com/p/google-web-toolkit-doc-1-5/wiki/FAQ_JSONFeedsFromOtherDomain I'm trying to use this method. It call the servlet, but it doesn't return me anything. Any suggestion? On Fri, Mar 4, 2011 at 10:41 AM, Alex D. alex.dobjans...@gmail.com wrote: Same Origin Policy - you

Re: RequestBuilder and StatusCode=0

2011-03-04 Thread Alex D.
It should return something, maybe there is a problem with the servlet. Try to do the GET by hand (wget, curl, etc) and see its response. If that is ok, maybe url is miss-spelled. Maybe Accept header is wrong, etc. I'm currently using this method in a couple of places (in case you're wondering

Re: organization of large gwt project: how to correctly break an app into GIN, Guice, GWT and Maven modules

2011-03-04 Thread Brian Reilly
given (client and webapp are two distinct maven project with their own pom.xml), which of the solutions below is the correct way for resolving dependency, given the assumptions in previous posts (multi-module gwt project) 1- copy assembled zip file from client project directory, to webapp

Cannot change CSS in dev mode

2011-03-04 Thread Andrey
When running GWT app in dev mode static web resources such as css- files cannot be changed. To change a line in css I must stop server, change and run again. That's really inconvenient. Is there any workaround? Thanks! -- You received this message because you are subscribed to the Google

Jetty configuration

2011-03-04 Thread cvh
Hello all. As I understand it, GWT uses an embedded Jetty server. Can anyone tell me where I can find the Jetty .xml configuration files used by GWT? I have a webapp which makes uses of Jetty's ContinuationFilter and ProxyServlet. The app works fine under GWT but fails when run in a separate Jetty

Celltable ui.xml possibilities

2011-03-04 Thread Jim Weaver
Hi, Very new to GWT. I'm working on a small application and trying to use the UIBinder technique (owner java class paried with ui.xml template). In the case of a celltable, I'm curious if I can put more of the layout in the ui.xml than any of the examples show. All the examples generally just

Re: empty ghost place token getting created

2011-03-04 Thread bedanand
I also having the same issue? did you find any solutions? On Jan 4, 3:16 am, jones34 ljw1...@gmail.com wrote: another clue? It seems to have something to do with the Tokenizers.  If I comment out these places from the @WithTokenizers{} section of my PlaceHistoryMapper definition as shown at

Getting ClassNotFound Exception for StringEscapeUtils in GWT-Dev.jar 2.2.0

2011-03-04 Thread Austin Dworaczyk Wiltshire
Pretty much as the title says. I'm using GWT 2.2.0, and everything compiles without errors in Eclipse. However, as soon as I use my applications such that it makes a call to StringEscapeUtils.escapeHTML(), I get a stack trace and a ClassNotFound exception. Here is my stack trace: 2011-03-03

Window.open handle ?

2011-03-04 Thread Ice13ill
I noticed that Window.open() method does not return a handle to the new window (although javascript does...). Is there another mechanism that gives this access to that new window? For example i have a small panel (like the chat in gmail) and i want to implement the pop out! functionality (as easy

Re: Celltable ui.xml possibilities

2011-03-04 Thread Jeff Schwartz
A number of widgets, cell-based widgets included, cannot be fully marked up using uibinder alone at this time and require backing Java code but the GWT team is promising fuller markup support for them in a future GWT version. The upside is that the Java api for CellTable is very adaptable,

Re: GWT and native encoding

2011-03-04 Thread Thomas Broyer
IIRC, the thing is: GWT generates UTF-8 files, and if your host page isn't UTF-8-encoded too you *might* experience weird rendering of characters that are not in the lowest common denominator (generally non-ASCII chars). It could be as easy as transcoding the generated files to the encoding of

Re: Window.open handle ?

2011-03-04 Thread BB
Issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=3779 -- 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

Re: RequestBuilder and StatusCode=0

2011-03-04 Thread Marco Gadaleta
Thx, for theresponse. I've yet tested the servlet by hand and it run well.. But the js/gwt method not run .. On Fri, Mar 4, 2011 at 2:23 PM, Alex D. alex.dobjans...@gmail.com wrote: It should return something, maybe there is a problem with the servlet. Try to do the GET by hand (wget, curl,

Re: Window.open handle ?

2011-03-04 Thread Andrei Cosmin Fifiiţă
Few stars... Doesn't help much... On 4 March 2011 16:11, BB buchholz.bast...@googlemail.com wrote: Issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=3779 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: ui:style src attribute causes error in the Google Eclipse plugin

2011-03-04 Thread Brian Reilly
First, one idea about the original question. You might be able to get away with adding src/main/resources as a source folder in the Eclipse project if it isn't already. It's been a while since I've used Eclipse; I don't know if that would be enough to make the GEP happy. If calling

Re: Cannot change CSS in dev mode

2011-03-04 Thread Ben Imp
I cannot say I've observed the same behavior. The browser may be caching your CSS, though. Hit refresh a few times and I'd wager you will see your changes. -Ben On Mar 4, 7:40 am, Andrey mino...@gmail.com wrote: When running GWT app in dev mode static web resources such as css- files cannot

Re: ui:style src attribute causes error in the Google Eclipse plugin

2011-03-04 Thread John
Phillippe, I'm in the same situation as you, just multiplied a few times, since I have multiple modules that each have the same copy of my define.css file in them (since you can't use CssResources as a src ...), so I have to drop a whole directory structure into my war. I think - and I haven't

Re: Cannot change CSS in dev mode

2011-03-04 Thread Brian Reilly
I have run into this. It may depend on how you start development mode. I use either maven or IntelliJ IDEA; they may have put some extra effort into the Eclipse plugin to make it work there, but I'm not sure. One workaround that I know of it to use ClientBundle/CssResource. See

Re: Is the Issue 5320 resolved ?

2011-03-04 Thread Ben Imp
The issue tracker is public. http://code.google.com/p/google-web-toolkit/issues/detail?id=5320 -Ben On Mar 4, 12:44 am, Deepak Singh deepaksingh...@gmail.com wrote: -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: CSS @font-face rules

2011-03-04 Thread Brian Reilly
Found this issue from a comment in the code review you referenced: http://code.google.com/p/google-web-toolkit/issues/detail?id=5247 One of the issue comments points to a library that someone created to help work around this: http://showsort.darkhelm.org/fdoc/ I'd suggest starring the

Re: Best practice for to maintain Big project

2011-03-04 Thread Ben Imp
If I am understanding you correctly, you worry about having to deploy the whole war for small changes, like a quick bugfix or the like. As far as I am aware, there isn't really a way to partially deploy a GWT application, like only those parts that changed. In theory, I suppose, you might be

Re: RequestFactory and GData glue

2011-03-04 Thread Thomas Broyer
When an instance is create()d on the client, it has no ID, so when sent to the server, it create()s it there too. If an instance was first retrieved from the server, its ID has been sent to the client (serialized as part of the stableId() of the EntityProxy), so when sent back to the server,

Re: DateBox can't be used with ValueBoxEditorDecorator

2011-03-04 Thread JosephLi
opened an issue in the tracker, figured the GWT team can close it if they have other plans: http://code.google.com/p/google-web-toolkit/issues/detail?id=6107 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: RequestBuilder and StatusCode=0

2011-03-04 Thread Y2i
This method I believe is supported by JsonpRequestBuilder http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/jsonp/client/JsonpRequestBuilder.html -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: RequestBuilder and StatusCode=0

2011-03-04 Thread Marco Gadaleta
Ok, this is well ;-) Thx On Fri, Mar 4, 2011 at 4:11 PM, Y2i yur...@gmail.com wrote: This method I believe is supported by JsonpRequestBuilder http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/jsonp/client/JsonpRequestBuilder.html -- You received this message because

Re: Cannot change CSS in dev mode

2011-03-04 Thread Andrey
Ben They are not caching. They are locked by Jetty and eclipse cannot save the changes (File is not writeable). Brian This doesn't concern GWT ClientBundles. It concerns dev mode Jetty behaviour. Jetty locks all static resources while running. That's really strange. -- You received this

Re: How to set URL of application

2011-03-04 Thread salk31
I think that is more of a configuration setting for you http server/ servlet container. Which one are you using? Also I guess on how you are exposing it to the outside world. It sounds like the servlet container doesn't know its correct name. On Mar 4, 7:45 am, vkrejcirik vkrejci...@gmail.com

Issues with IE GWT compiled javascript is 11MB

2011-03-04 Thread sridevi macherla
Hi, Everyone, need a help I have a huge application almost entire application is totally interlinked with most of the pages. And finally the javascript that is being generated in prod mode is around 11 MB and the IE/firefox is not able to load this huge javascript file. Someone please suggest

Re: Issues with IE GWT compiled javascript is 11MB

2011-03-04 Thread Jeff Larsen
11MB you're probably gonna want to start looking into codesplitting various parts of the app. That is probably the only way you're going to get that beast down to a reasonable size. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: ui:style src attribute causes error in the Google Eclipse plugin

2011-03-04 Thread Philippe Beaudoin
Thanks for all the answers! I'm glad to see it's a popular topic. Thomas insight on source vs resource makes sense, but as Brian pointed out, the problem I have is really about having non-java files in the java directory. I'd be fine having everything sit under /src/main/. Given that my

GWT external jars on client side

2011-03-04 Thread azuniga
Is it possible to use external jars on the client side? For example I'm trying to create a project that call BIRT jars on the client side, but I get the typical error: Unable to find 'org/eclipse/birt/report/ engine/api/iReportEngine.gwt.xml' on your classpath; could be a typo, or maybe you forgot

Re: Issues with IE GWT compiled javascript is 11MB

2011-03-04 Thread sridevi macherla
Larsen, Can't we use any other options available, like the Generators. Thanks Sri On Fri, Mar 4, 2011 at 9:53 PM, Jeff Larsen larse...@gmail.com wrote: 11MB you're probably gonna want to start looking into codesplitting various parts of the app. That is probably the only way you're going

Re: ui:style src attribute causes error in the Google Eclipse plugin

2011-03-04 Thread Hilco Wijbenga
On 3 March 2011 21:31, Philippe Beaudoin philippe.beaud...@gmail.com wrote: Hi! I'm using Maven to build my GWT project, together with the standard Maven directory layout. That is, sources are in src/main/java while resources (such as CSS files) are in src/main/resources. Now, in one of my

Re: Issues with IE GWT compiled javascript is 11MB

2011-03-04 Thread sridevi macherla
Is there any mechanism to generate browser sepecific example I have 3 browser, but currenlty user is browsing in Firefox, so the rest of permutation can be ignored meaning dynamic binding of browser specific way so that way the javascript can be reduced to a larger extent, but please suggest me.

Development mode vs web mode URL discrepancy

2011-03-04 Thread cri
I saw another post on this subject, but there wasn't a satisfactory answer for me. So... I find it very unfortunate that my GWT application URLs are not consistent between development mode and web mode. Our application lives on an intranet with lots of interaction with other intranet resources

Re: Issues with IE GWT compiled javascript is 11MB

2011-03-04 Thread Ben Imp
I believe GWT already does that. The browser should only be loading one of the permutations. You should look at code splitting. Cutting out code you dont need couldn't hurt either. -Ben On Mar 4, 11:18 am, sridevi macherla sridevimache...@gmail.com wrote:  Is there any mechanism to generate

Re: ui:style src attribute causes error in the Google Eclipse plugin

2011-03-04 Thread Hilco Wijbenga
On 4 March 2011 12:02, Thomas Broyer t.bro...@gmail.com wrote: There's a deeper question there: are UiBinder ui.xml, LocalizableResources properties, ClientBundle css, images, etc. resources or sources? From Maven's point of view: yes, they are resources, not sources. Sources contain source

Re: GWT external jars on client side

2011-03-04 Thread Jeff Larsen
Ask yourself this, could you call the BIRT jars from jquery or some other javascript library? What functionality are you trying to get from BIRT? Do the classes that you need and their hierarchy play nicely with the gwt java whitelist (This is almost certian to be a no, but I haven't looked at

Re: RequestFactory, Editor Framework, and CellTable

2011-03-04 Thread Colin Alworth
I've already got a generator https://github.com/niloc132/celltable-toolsthat builds FieldUpdater instances (as well as Column instances, complete with getValue calls), so it is just a matter of extending it a little further to make this PendingChange-like thing. And, of course, to either stop

GWT 2.2 java.lang.ExceptionInInitializerError: null - ONLY when using Eclipse Debugger

2011-03-04 Thread Yaakov
Hi, I am using the latest Eclipse (64bit) on Window XP 64-bit with JDK 1.6.0_13 64-bit. I can compile and deploy (with maven) just fine. Looking into installation details, I am using the latest GWT 2.2 Eclipse plugin. It shows as version 2.2.0.v201102111811. I can compile and deploy the app just

Re: Development mode vs web mode URL discrepancy

2011-03-04 Thread Ben Imp
GWT has the concept of a history token to preserve your application's context. You shouldn't need to be parsing the URL. http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsHistory.html -Ben On Mar 4, 11:20 am, cri chuck.irvine...@gmail.com wrote: I saw another post on this

Re: Can't make @sprite working ...

2011-03-04 Thread Simon M
Yes that's it thank you -- 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

RE: howto check HTML5 audio tag supported in a browser

2011-03-04 Thread Armishev, Sergey
Thank you, Philip! That works. Took me time to find free mp3 to ogg converter and I found one from http://www.oggtomp3converter.com/ . It states that OGG Vorbis has smaller file size and better audio quality. But after conversion of 2KB mp3 file I got 5KB of ogg file. Do you think it is normal

RE: howto check HTML5 audio tag supported in a browser

2011-03-04 Thread Armishev, Sergey
One more thing I forgot The sound itself plays with ogg file on Firefox but audio control still doesn't show up compare to Chrome browser. Any ideas why? -Sergey -Original Message- From: google-web-toolkit@googlegroups.com [mailto:google-web-toolkit@googlegroups.com] On Behalf Of

Re: Window.open handle ?

2011-03-04 Thread Colin Alworth
It should be trivial to make your own call in jsni to $wnd.open, returning whatever handle you want, or doing the focus right away. Look at how Window.open is implemented, and see if you can replicate it in such a way to have the exact behavior you need. -- You received this message because

Re: DateBox can't be used with ValueBoxEditorDecorator

2011-03-04 Thread Colin Alworth
This isn't a bug, this is just how the class is defined - DateBox is not a ValueBox, so attempting to pass it into a function that expects a ValueBox will naturally fail. A few options you have: Try making a ValueBoxBase instance that wraps a DateBox - this may or may not be possible, but

Re: howto check HTML5 audio tag supported in a browser

2011-03-04 Thread Chris Conroy
In general you should avoid doing a lossy conversion from a lossy file. More than you ever wanted to know about audio encoding: http://www.hydrogenaudio.org/forums/ On Fri, Mar 4, 2011 at 1:35 PM, Armishev, Sergey sarmis...@idirect.netwrote: Thank you, Philip! That works. Took me time to find

RequestFactory and fat client

2011-03-04 Thread Katya
Hi! Whether it is possible to create fat client while using RequestFactory? It would be great if it is possible to have some class on the client side, which implements the EntityProxy interface from shared folder. So it could have some logic to perform on client side like validation, etc. I tried

ie8 plugin fails to install

2011-03-04 Thread deborah
Hello, The GWT ie8 plugin is not installing. The browser window shows the panel asking for it with a link, I close the installation warning bar generated by ie8, and install the plugin. It appears to install, but does not read the GWT page even after ie8 restart. Hard install by saving the

How can I hide a SimplePager only when the total number of rows is less than or equal to one page?

2011-03-04 Thread Blackberet
I have a SimplePager bound to a CellTable. It makes no sense to display the pager if the total number of rows is less than or equal to the number of rows in a page. I thought I could use pager.setVisible(pager.hasNextPage() || pager.hasPreviousPage()); but that doesn't work. -- You received

Can anyone share code that adds keyboard navigation to the popup calendar picker?

2011-03-04 Thread Blackberet
I've seen several references in postings that say something like I've added keyboard navigation to the calendar, but I don't see any code. -- 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: ui:style src attribute causes error in the Google Eclipse plugin

2011-03-04 Thread Brian Reilly
There's a deeper question there: are UiBinder ui.xml, LocalizableResources properties, ClientBundle css, images, etc. resources or sources? From Maven's point of view: yes, they are resources, not sources. Sources contain source code (i.e. Java code). Java code is just one example. Groovy

Re: ui:style src attribute causes error in the Google Eclipse plugin

2011-03-04 Thread Hilco Wijbenga
On 4 March 2011 19:53, Brian Reilly brian.irei...@gmail.com wrote: There's a deeper question there: are UiBinder ui.xml, LocalizableResources properties, ClientBundle css, images, etc. resources or sources? From Maven's point of view: yes, they are resources, not sources. Sources contain

Re: ie8 plugin fails to install

2011-03-04 Thread FabioV
it looks like it is a clean os install from your comments. bear in mind that the first time you install the plugin that is an activex control, IE will give you several warnings in order to enable the plugin to run. it is a one time thing. here are some things to keep in mind: 1) does the

Re: ui:style src attribute causes error in the Google Eclipse plugin

2011-03-04 Thread Brian Reilly
I haven't worked with Groovy/Scala and Maven. Are you saying Groovy/Scala code is supposed to go in src/main/resources? That would indeed be strange. Generally, no. Groovy (and maybe Scala too) is a little bit of an unusual case because (I think) you don't actually have to compile the source

Re: DateBox can't be used with ValueBoxEditorDecorator

2011-03-04 Thread JosephLi
Colin, Thanks for your reply. I understand from the source that the ValueBox and the DateBox are from two totally separate branches so it might not be possible to make the existing DateBox fits into the ValueboxEditorDecorator bunch. But as a user, if Google is pushing the uiBinder, the

What is the purpose of the files hosted.html and clear.cache.gif ? should they be included in final deployment ?

2011-03-04 Thread zixzigma
Hello Everyone, do you know what is the purpose of the files *hosted.html* and *clear.cache.gift* ? should they be included in final deployment ? I believe clear.cache.gift must be included, but not hosted.html, what do you think ? Thank You -- You received this message because you are

Re: RequestFactory and fat client

2011-03-04 Thread David Chandler
Hi Katya, RequestFactory creates concrete instances of your entity types on the client using GWT AutoBeans, so it's not possible to use your own entity classes on the client, only interfaces. Because RF instantiates the concrete classes, it is able to track changes to entities and send only

Re: Development mode vs web mode URL discrepancy

2011-03-04 Thread Ben Imp
Oh, I missed the bit where you are accessing resources outside of the GWT app. Icky ... I punt. -Ben On Mar 4, 12:09 pm, Ben Imp benlee...@gmail.com wrote: GWT has the concept of a history token to preserve your application's context.  You shouldn't need to be parsing the URL.

Re: RequestFactory and fat client

2011-03-04 Thread JosephLi
Good to know client side bean validation is a work in progress, that explains why it isn't working yet currently. Thanks David, Joseph -- 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: Can anyone share code that adds keyboard navigation to the popup calendar picker?

2011-03-04 Thread JosephLi
+1 on this. -- 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-toolkit+unsubscr...@googlegroups.com. For more

is BasicPlace still available?

2011-03-04 Thread Kathiravan Tamilvanan
http://code.google.com/webtoolkit/doc/trunk/DevGuideMvpActivitiesAndPlaces.html#Places explains we can extend BasicPlace if the place does not maintain any state. I couldnt find that class in GWT 2.1.1 or GWT 2.2 -- You received this message because you are subscribed to the Google Groups

Re: is BasicPlace still available?

2011-03-04 Thread David Chandler
The doc is a bit unclear. It's up to you to create BasicPlace. It would look something like this, but I haven't tested it. import com.google.gwt.place.shared.Place; import com.google.gwt.place.shared.PlaceTokenizer; public class BasicPlace extends Place { public class BasicPlaceTokenizer

Re: Issues with IE GWT compiled javascript is 11MB

2011-03-04 Thread cvh
Yes, you can instruct GWT to compile only for say Firefox on Windows: see http://stackoverflow.com/questions/890352/gwt-module-xml-how-to-redefine-and-use-more-than-one-user-agent On Mar 4, 5:18 pm, sridevi macherla sridevimache...@gmail.com wrote:  Is there any mechanism to generate browser

Re: organization of large gwt project: how to correctly break an app into GIN, Guice, GWT and Maven modules

2011-03-04 Thread zixzigma
Thank You, following Thomas suggestions, my gwt-client maven module, has packaging of type JAR. I use gwt-maven-plugin to compile my Java Sources, and create resulting artifacts [1] I then use maven-assembly-plugin to ZIP these generated artifacts in a ZIP archive, so that I can use it as a

Re: Database jdbc

2011-03-04 Thread Mohammed Magdi
i write the conn part in server part and it run and failed to access the db and i tried the java code only and he can access the data base in java project not GWT ??!! magdi thanks On Fri, Mar 4, 2011 at 12:44 PM, Paul Robinson ukcue...@gmail.com wrote: You cannot access JDBC directly from the

Re: Can't install google eclipse plugin on fresh Helios install.

2011-03-04 Thread Andrew Hughes
Thank You! Worked a treat (and 10/10 for the online instructions http://code.google.com/intl/es/eclipse/docs/install-from-zip.htmlhttp://www.google.com/url?sa=Dq=http://code.google.com/intl/es/eclipse/docs/install-from-zip.html ). On Thu, Mar 3, 2011 at 10:00 PM, Juan Pablo Gardella

Re: Development mode vs web mode URL discrepancy

2011-03-04 Thread Andrew Broderick
I was going to ask a very similar question, only regarding the RPC services declared in web.xml. In dev mode it seems you need the pattern: /module-name/service.rpc for the servlet mapping, whereas in production mode you only need /service.rpc. At the moment we have an ant task that transforms

Development mode vs web mode URL discrepancy for RPC services

2011-03-04 Thread Andrew Broderick
Hi, I have more or less the same question as another post, but with a slight twist. In dev mode, in our web.xml, we have to have our RPC service mappings with this pattern: /module/service.rpc . For deployment on a web server, we have to strip out the module prefix for it to work, using an Ant

Re: Database jdbc

2011-03-04 Thread Jens
You receive these errors because you have defined one or more methods in your DataBaseConn service to throw a ClassNotFoundException and a SQLException. Because these service interfaces are in the client package, GWT tries to compile them into javascript. But the GWT compiler only supports

Re: Development mode vs web mode URL discrepancy for RPC services

2011-03-04 Thread Jens
In development mode with embedded jetty your app will be hot deployed to jetty's root and I guess during deployment on another j2ee/servlet server you use a context-root with the name of your GWT module and this will result in http://hostname:port/module name as context root/module/service.rpc

Re: GWT 2.2 java.lang.ExceptionInInitializerError: null - ONLY when using Eclipse Debugger

2011-03-04 Thread Y2i
May be eclipse is still trying to use GWT 2.1? -- 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

[gwt-contrib] [google-web-toolkit] r9809 committed - Fixing firefox permission error message when assesing nodeType of a re...

2011-03-04 Thread codesite-noreply
Revision: 9809 Author: troni...@google.com Date: Thu Mar 3 22:05:04 2011 Log: Fixing firefox permission error message when assesing nodeType of a restricted html element (such as iframe). Review at http://gwt-code-reviews.appspot.com/1369804 Review by: fre...@google.com

[gwt-contrib] Re: Adds unit tests for extending JavaScriptObject. Tests a loosening of the (issue1369805)

2011-03-04 Thread zundel
http://gwt-code-reviews.appspot.com/1369805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adds unit tests for extending JavaScriptObject. Tests a loosening of the (issue1369805)

2011-03-04 Thread zundel
Scott suggested moving these tests to JSORestrictionsTest, which is not just the right place, but by only testing from source, it side-steps the JavaScriptObject bytecode issue that was causing such a huge pain.

[gwt-contrib] Re: Adds unit tests for extending JavaScriptObject. Tests a loosening of the (issue1369805)

2011-03-04 Thread scottb
LGTM w/ nits. I think this is actually much better than the first formulation, and has the added benefit of testing JsoRestrictionsChecker directly. http://gwt-code-reviews.appspot.com/1369805/diff/1013/dev/core/test/com/google/gwt/dev/javac/JSORestrictionsTest.java File

[gwt-contrib] Re: Reformatting pass with updated gwt-format.xml Eclipse formatter before persistent unit cache patch (issue1368802)

2011-03-04 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/1368802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Reformatting pass with updated gwt-format.xml Eclipse formatter before persistent unit cache patch (issue1368802)

2011-03-04 Thread tobyr
LGTM http://gwt-code-reviews.appspot.com/1368802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adding touch scrolling support to ScrollPanel for mobile support. TouchScroller augments an exis... (issue1370801)

2011-03-04 Thread jlabanca
http://gwt-code-reviews.appspot.com/1370801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] HTML5 Storage API in GWT. (issue1374803)

2011-03-04 Thread pdr
Reviewers: jlabanca, Description: HTML5 Storage API in GWT. This change adds the HTML5 local and session storage APIs, and a Map interface backed by storage. This is a contribution from an external project, the gwt-mobile-webkit project, and is a copy of issue#1290802 with some additional

[gwt-contrib] property fall back value evaluation scheme - enable fall back bindings. (issue1369807)

2011-03-04 Thread fabiomfv
Reviewers: rjrjr, jat, bobv, jlabanca, fredsa, Description: property fall back value evaluation scheme - enable fall back bindings. Please review this at http://gwt-code-reviews.appspot.com/1369807/ Affected files: M dev/core/src/com/google/gwt/core/ext/DefaultSelectionProperty.java M

[gwt-contrib] Re: Adds unit tests for extending JavaScriptObject. Tests a loosening of the (issue1369805)

2011-03-04 Thread zundel
http://gwt-code-reviews.appspot.com/1369805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adds unit tests for extending JavaScriptObject. Tests a loosening of the (issue1369805)

2011-03-04 Thread zundel
http://gwt-code-reviews.appspot.com/1369805/diff/1013/dev/core/test/com/google/gwt/dev/javac/JSORestrictionsTest.java File dev/core/test/com/google/gwt/dev/javac/JSORestrictionsTest.java (right):

[gwt-contrib] Re: HTML5 Storage API in GWT. (issue1374803)

2011-03-04 Thread jlabanca
LGTM Everything looks good, but there are some places where you can simplify the Impl classes. http://gwt-code-reviews.appspot.com/1374803/diff/1/user/src/com/google/gwt/storage/client/StorageImpl.java File user/src/com/google/gwt/storage/client/StorageImpl.java (right):

[gwt-contrib] Re: property fall back value evaluation scheme - enable fall back bindings. (issue1369807)

2011-03-04 Thread jat
Ray: regarding your comment about whether ie9 is needed -- to me it seems highly unlikely that ie9 is and will remain 100% compatible with safari, so yes I think it will be needed. http://gwt-code-reviews.appspot.com/1369807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adds unit tests for extending JavaScriptObject. Tests a loosening of the (issue1369805)

2011-03-04 Thread scottb
LGTM http://gwt-code-reviews.appspot.com/1369805/diff/1013/dev/core/test/com/google/gwt/dev/javac/JSORestrictionsTest.java File dev/core/test/com/google/gwt/dev/javac/JSORestrictionsTest.java (right):

  1   2   >