[gwt-contrib] Re: Documentation site on github

2015-01-20 Thread Michael Prentice
This is great news and will enable more people to contribute to the documentation in meaningful ways without needing to become fully versed in Gerrit and the review system. Any plans to remove the 'This is a beta version' from the header (main.tpl) of the gwtproject.org site? On Thursday,

Re: Documentation site on github

2015-01-20 Thread Michael Prentice
This is great news and will enable more people to contribute to the documentation in meaningful ways without needing to become fully versed in Gerrit and the review system. Any plans to remove the 'This is a beta version' from the header (main.tpl) of the gwtproject.org site? On Thursday,

[gwt-contrib] Re: user tests fail to compile

2014-06-14 Thread Michael Prentice
Thanks Jens, that worked great. This .classpath file is in source control, so this should probably go into a patch. Is anyone working on one already? classpathentry excluding=**/super/** kind=src path=core/test/ On Friday, June 13, 2014 4:28:29 AM UTC-4, Jens wrote: In Eclipse any folder

[gwt-contrib] Change-Id commit hook and EGit

2014-06-14 Thread Michael Prentice
Is there something special that I need to do to get EGit to work properly with the Change-Id commit hook? :~/Git/gwt/trunk$ git push origin HEAD:refs/for/masterCounting objects: 59, done. Delta compression using up to 4 threads. Compressing objects: 100% (11/11), done. Writing objects: 100%

[gwt-contrib] Re: Change-Id commit hook and EGit

2014-06-14 Thread Michael Prentice
Good to know. Thanks. This was driving me nuts. I'm on Ubuntu, so unfortunately Sourcetree is not an option. I've used it before though and it is quite nice. On Saturday, June 14, 2014 12:59:51 PM UTC-4, Jens wrote: EGit does not support commit hooks yet. If you are on Mac I recommend

[gwt-contrib] Re: user tests fail to compile

2014-06-14 Thread Michael Prentice
I've uploaded a patch for this: https://gwt-review.googlesource.com/#/c/7890/3 On Saturday, June 14, 2014 10:22:47 AM UTC-4, Michael Prentice wrote: Thanks Jens, that worked great. This .classpath file is in source control, so this should probably go into a patch. Is anyone working on one

[gwt-contrib] Re: user tests fail to compile

2014-06-12 Thread Michael Prentice
I hit the same thing last night. The fix you suggested may help with Ant, but it does not resolve the compile errors in Eclipse :( It doesn't look like Eclipse has any Annotations to ignore these types of severe errors either, I just pulled in the 4 commits from today and they don't help with

[gwt-contrib] Re: user tests fail to compile

2014-06-12 Thread Michael Prentice
a look in the morning if not. On Friday, June 13, 2014 12:34:21 AM UTC-4, Michael Prentice wrote: I hit the same thing last night. The fix you suggested may help with Ant, but it does not resolve the compile errors in Eclipse :( It doesn't look like Eclipse has any Annotations to ignore

Re: [gwt-contrib] Upgrading Checkstyle to 5.7 (Java 7 grammar support and more)

2014-06-08 Thread Michael Prentice
( https://gwt-review.googlesource.com/#/c/6670/). If you checkout out trunk or download the nighty builds (2.7.0-SNAPSHOP) from maven all the required changes (to ant, the style files, etc) are there. On Sat, Jun 7, 2014 at 1:26 AM, Michael Prentice spla...@gmail.com javascript: wrote

Re: [gwt-contrib] Upgrading Checkstyle to 5.7 (Java 7 grammar support and more)

2014-06-08 Thread Michael Prentice
Awesome. Looks like you got all of the changes that I had found, plus you cleaned up a ton of the code as well. This is extremely helpful! On Saturday, June 7, 2014 2:55:36 PM UTC-4, Roberto Lublinerman wrote: We upgraded to checkstyle 5.7 in trunk (

[gwt-contrib] Re: Questions about initial contributor configuration - build errors in Eclipse

2014-06-05 Thread Michael Prentice
of generating dirs and jars named gwt-0.0.0*. Is this supposed to be picked up somewhere in the repository or does each developer need to set it? I'm now able to build the GWT trunk and the GPE! woo! Now I just need to get all of the tests passing and checkstyle configured properly. Michael Prentice GDG

Re: [gwt-contrib] GSOC and GWT

2014-03-12 Thread Michael Prentice
to promote it / present here locally via my GDG. Michael Prentice GDG Space Coast On Thursday, February 13, 2014 11:00:42 AM UTC-5, Julien Dramaix wrote: I think it's a great idea but it's unfortunately too late for this year (deadline for submitting an organization is tomorrow) We should

Re: ClassNotFoundException: com.google.gwt.dev.util.Preconditions when compiling with 2.6.0 RC1

2014-01-16 Thread Michael Prentice
I was able to get my project to build with GWT 2.6rc4 after upgrading EventBinder to 1.0.1 and Gin to 2.1.2. I wanted to commit my EventBinder and Gin upgrades but not yet commit the change to GWT 2.6. This didn't work though. Using Gin 2.1.2 with GWT 2.5.1 generated the following exceptions

[gwt-contrib] Re: Window.confirm() always returning false without prompting on 2.6rc4

2014-01-16 Thread Michael Prentice
. Putting that into place and rebuilding everything appears to have solved this, somehow. I haven't been able to get Gin 2.1.2 to work with GWT 2.5.1 so I've been swapping between 2.1.1 and 2.1.2 while testing the different SDK versions. On Thursday, January 16, 2014 7:24:33 PM UTC-5, Michael

Re: Differences between DevMode and Production mode related to trim()

2014-01-14 Thread Michael Prentice
Thanks a lot Thomas. I've submitted this issue here: https://code.google.com/p/google-web-toolkit/issues/detail?id=8534 On Tuesday, January 14, 2014 4:06:28 AM UTC-5, Thomas Broyer wrote: Maybe worth a bug entry. +1 The emulation should read: var r1 = this.replace(/^[\0- ]*/, '');

Re: Differences between DevMode and Production mode related to trim()

2014-01-13 Thread Michael Prentice
Thank you Jens. It does look like there is a real difference between Java's trim() and the following JavaScript: 1. var r1 = this.replace(/^(\s*)/, ''); 2. var r2 = r1.replace(/\s*$/, ''); A JavaScript whitespace character can be: - A space character - A tab character - A

Re: Differences between DevMode and Production mode related to trim()

2014-01-13 Thread Michael Prentice
Yeah, I had thought about that, but unfortunately our DTOs are auto-generated from the backend and contain null filled pre-sized char arrays. I changed the generator to give us String getProperty() and setProperty(String) method for each char Array. Changing those to do trim() wouldn't work

[gwt-contrib] Re: Last call (hopefully) for GWT 2.6 patches

2014-01-08 Thread Michael Prentice
I'm having some issues with learning Gerrit. I took a look at the change and made a draft comment, but I couldn't figure out how to publish it. I added myself as a reviewer in an attempt to be able to do that, but no luck. Various searches indicated that I should see a 'Review' button under

[gwt-contrib] Re: Last call (hopefully) for GWT 2.6 patches

2014-01-08 Thread Michael Prentice
Thank you very much Jens! Made my first comment on a patch set :) On Wednesday, January 8, 2014 1:52:27 PM UTC-5, Jens wrote: I'm having some issues with learning Gerrit. I took a look at the change and made a draft comment, but I couldn't figure out how to publish it. I added myself as a

Re: [gwt-contrib] Re: GWT.create sessions recorded?

2014-01-05 Thread Michael Prentice
Unfortunately, the Workshops were not recorded in the US. I am not sure about the EU Workshops. Most everything that you need is here: http://www.gwtproject.org/makinggwtbetter.html#workingoncode But Michael Vogt's slides and some of the posts here should help you through the rough spots

Re: GWT.create Session videos

2014-01-03 Thread Michael Prentice
Follow GWT.create on Google+ or Twitter for announcements about when the videos are posted. Most all slides have already been posted (https://plus.google.com/114976122739833533849/posts/3uSGmq7HwUL). -- You received this message because you are subscribed to the Google Groups Google Web

Re: using cusrtom classes in GWT designer

2014-01-03 Thread Michael Prentice
-plugin-eclipse) and there is an old, inactive bug tracker for it here: https://code.google.com/p/gwt-designer/issues/list Since this seems more like a WindowBuilder question than a specific GWT Designer question, I would recommend asking at the Eclipse forums linked above. Michael Prentice

[gwt-contrib] Re: GWT.create sessions recorded?

2014-01-03 Thread Michael Prentice
Yes, Yes. See Google+ or Twitter feeds for GWT.create for more details and announcements. On Friday, January 3, 2014 9:41:03 AM UTC-5, Patrick Tucker wrote: Were any of the sessions from the conference recorded? Are they going to be made public? Thanks, Pat --

Re: JavaFX 2.2 WebView support - possible new User Agent?

2014-01-01 Thread Michael Prentice
I am not running Grails or PrimeFaces on the back-end. Instead we have servlets that connect us to a proprietary back-end system that is written in C and accessed via JNI. While I do have an authentication system written, we are not using it as our enclosing Swing application handles all

Re: JavaFX 2.2 WebView support - possible new User Agent?

2013-12-31 Thread Michael Prentice
-5, Michael Prentice wrote: Yep, we've seen those issues. As I mentioned, I've submitted + voted for a number of select element related bugs. I can try to post links to the bugs in Oracle's Jira tomorrow. Mouse wheel is supposed to be implemented in Java 8. All of the others were pushed out

Re: GWT 2.5.1 now available

2013-12-30 Thread Michael Prentice
From the contributors list, it looks like sometime in January. There are a few issues that need to be fixed before release, but people are on vacation for the holidays. On Sunday, December 29, 2013 9:42:39 PM UTC-5, pierre wrote: On Monday, November 4, 2013 5:00:56 PM UTC+8, Ed wrote:

Re: Capturing “Cancel” selection from GWT Activity.mayStop() response

2013-12-30 Thread Michael Prentice
I've detailed my solution here: http://stackoverflow.com/a/20848504/633107 It uses both the AbstractCell#handlesSelection override suggested by Jens and the CellPreviewEvent.Handler suggested by Thomas. Thank you! Michael Prentice GDG Space Coast On Friday, December 27, 2013 3:17:22 PM UTC-5

Re: JavaFX 2.2 WebView support - possible new User Agent?

2013-12-30 Thread Michael Prentice
of code beyond their examples. Of course we'll try to use GWT DialogBoxes for most things (which are working well), but Activities and Places relies on the confirm dialog. Michael Prentice GDG Space Coast On Monday, December 30, 2013 6:59:08 PM UTC-5, Gary Eberhart wrote: Hello Michael, I'm

Re: Capturing “Cancel” selection from GWT Activity.mayStop() response

2013-12-27 Thread Michael Prentice
I'm running into this same situation today when using a DataGrid (each row mapping to a Place). I think that I'll try out the SelectionModel approach and try to set the selection myself on place changes. I think that Thomas was trying to refer to this StackOverflow question as the one posted

Differences between DevMode and Production mode related to trim()

2013-12-27 Thread Michael Prentice
lots of nulls and extra spaces at the end of things like tokens. Is this a known issue? Is this a problem with Chrome or GWT or are we just 'doing it wrong'? Thank you, Michael Prentice GDG Space Coast -- You received this message because you are subscribed to the Google Groups Google Web

Re: Differences between DevMode and Production mode related to trim()

2013-12-27 Thread Michael Prentice
I guess that I should explain what 'fails' means. We're looking to add items to the list when both the TrailerID and TripID fields are empty. The failure is that, the trim() checks in Java, trim the 'whitespace' which in this case are null characters in the String. So the comparison is

[gwt-contrib] Re: Problem compiling GWT from source

2013-12-23 Thread Michael Prentice
I agree with Thomas. I believe it already defaults to picking up the one generated by the ANT build. I did the same thing and ignored that part of the instructions since it didn't work well. After that everything built well enough (with regards to APT stuff). Looks like another thing in the

[gwt-contrib] Re: Latest update to GWT plugin for Eclipse crashes Indigo

2013-12-23 Thread Michael Prentice
This was also posted in the GPE Google Group here: https://groups.google.com/forum/#!topic/google-plugin-eclipse/V4MaZEXY24Q That is probably a better place to discuss it. Also posting your update site URL would be helpful. -- http://groups.google.com/group/Google-Web-Toolkit-Contributors ---

[gwt-contrib] Re: Questions remain for the GWT.create Steering Committee members

2013-12-17 Thread Michael Prentice
That would be great. I know that they are busy with the EU conference this week, but there were a lot more questions to be addressed. I already gave some feedback that we might need to expand the panel QA's next year (either split them by some topics or extend the time). On Monday, December

Re: [gwt-contrib] Re: Start eclipse from console?

2013-12-17 Thread Michael Prentice
Good to know. I was trying to resolve some build issues in Eclipse on my flight home, but launching from trunk/eclipse didn't seem to help me (or make a difference) at all. On Tuesday, December 17, 2013 9:49:29 AM UTC-5, Michael Vogt wrote: Ok, thanks. I prepare a patch to remove this from

[gwt-contrib] Questions about initial contributor configuration - build errors in Eclipse

2013-12-17 Thread Michael Prentice
... if you know what the solution is, I'd love to know so that I could fix this on my laptop. Michael Prentice -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --- You received this message because you are subscribed to the Google Groups GWT Contributors group. To unsubscribe from

Re: Need some help, about Google web button.

2013-12-02 Thread Michael Prentice
Seems like it is just a styled DialogBox or something similar that is triggered by a button. Are you sure that this question is related to GWT? On Monday, December 2, 2013 8:15:23 AM UTC-5, adart...@gmail.com wrote: Good day! I am a young web designer,now study currently working on a site

Re: Gwt Application Hosting in Linux with Apache tomcat

2013-12-02 Thread Michael Prentice
Looks like a Tomcat configuration issue and not a GWT problem. There are lots of discussions out there about how to build and deploy your application for production. I recommend searching this group and/or Googling something like 'GWT war production deploy' On Friday, November 29, 2013

[gwt-contrib] Re: Next contributor hangout

2013-12-02 Thread Michael Prentice
Hope you enjoyed the holiday weekend. Just a friendly note to remind you about this as the video is not yet available via the provided link. Looking forward to watching it before GWT.create next week. On Tuesday, November 26, 2013 1:30:20 AM UTC-5, Bhaskar Janakiraman wrote: Hi Folks, The

Re: Best practice for injecting environment-specific settings

2013-11-14 Thread Michael Prentice
I looked at doing this with a dynamic host page, and still might re-consider it should I get some spare time (unlikely). But we ended up just using a custom servlet to get our data. In our case, we need the server to initialize the data and constants before sending them to the client. We fire

Re: GWT Starter Project won't build - compiler level does not match...

2013-11-14 Thread Michael Prentice
Which version of GWT are you using? I know that in GWT 2.5.1, Java 7 is supported. I'm also running Eclipse Kepler (launched with Java 7 SDK x64) But I do have to run my actual build with Java 6 (Eclipse Run Configurations for build.xml and on the JRE tab select 'Separate JRE' pointing it to

Re: GWT Starter Project won't build - compiler level does not match...

2013-11-14 Thread Michael Prentice
No, I just did what you described with Java 7 and everything worked fine. It doesn't generate an ANT (build.xml) file so you can ignore some of what I said. Are you building from the GDT Tools Icon - GWT Compile Project... with your project selected? or right clicking on your project and

Re: GWT Starter Project won't build - compiler level does not match...

2013-11-14 Thread Michael Prentice
Are you using Maven? I don't know why else your project would have Project Facets enabled. Doh, I just tested this and I also had my starter project created with a custom Project Facet. My real GWT project doesn't use Project Facets. Right click on your project and go to Properties, then

Re: GWT Starter Project won't build - compiler level does not match...

2013-11-14 Thread Michael Prentice
Wow that is really odd that it defaulted to 1.4! If you search this group or Google you can find a way to reduce the permutations for development, but in most cases you don't need to do that kind of full compile very often. You can just run the project in DevMode and not need to re-compile

Re: JavaFX 2.2 WebView support - possible new User Agent?

2013-11-07 Thread Michael Prentice
app.css in the .war file, so GWT was generating and bundling things properly. There appears to have been an issue somewhere on the JavaFX WebView side. Thank you for your help! Michael Prentice GDG Space Coast http://gdgspacecoast.org On Wednesday, November 6, 2013 7:14:38 PM UTC-5, Oliver Krylow

Re: JavaFX 2.2 WebView support - possible new User Agent?

2013-11-06 Thread Michael Prentice
I've posted this question to StackOverflow here: http://stackoverflow.com/questions/19816129/how-do-i-left-pad-a-div-in-a-javafx-webview On Tuesday, November 5, 2013 6:40:08 PM UTC-5, Michael Prentice wrote: Thank you for the idea about escaping the first dash. It made the CSS editor in GWT

JavaFX 2.2 WebView support - possible new User Agent?

2013-11-05 Thread Michael Prentice
else looked into this at all? Does anyone have any pointers for making GWT/JavaFX play nice together for these 'vendor' extended CSS rules? Thank you, Michael Prentice GDG Space Coast http://gdgspacecoast.org -- You received this message because you are subscribed to the Google Groups Google

Re: JavaFX 2.2 WebView support - possible new User Agent?

2013-11-05 Thread Michael Prentice
only code that would need to be debugged in the WebView is the navigation code that talks between GWT and Swing via JSNI and JavaFX. Michael Prentice GDG Space Coast http://gdgspacecoast.org On Tuesday, November 5, 2013 6:06:53 PM UTC-5, Oliver Krylow wrote: If the CSS snippet you have shown

Re: Gwt-ext Designer Netbeans

2013-10-11 Thread Michael Prentice
Not to my knowledge. On Friday, October 11, 2013 5:30:06 PM UTC-4, nithin wrote: Is the Designer for netbeans now? On Friday, February 20, 2009 6:29:44 AM UTC-5, heru wrote: thank you for your reply -- You received this message because you are subscribed to the Google Groups Google Web

Re: Verificar dados existentes no bando de dados

2013-10-02 Thread Michael Prentice
If you are just starting out, you will probably want to use a GWT-RPC to the backend to create the new account. It should return an error message or code that indicates that a user with that email address already exists. Then in the onFailure() method of your AsyncCallback handler, call a

Re: gwt-unitCache

2013-09-24 Thread Michael Prentice
Those files are caches for making the compilation faster. You can remove them any time you would like. Disabling the generation of these files will slow down your compilation (especially in DevMode afaik). On Tuesday, September 24, 2013 9:35:11 AM UTC-4, al1975e wrote: In the folder \ build \

Re: Where i may to download update site archive for GWT Designer?

2013-09-10 Thread Michael Prentice
http://dl.google.com/eclipse/plugin/4.2 http://dl.google.com/eclipse/plugin/4.3 On Tuesday, September 10, 2013 3:53:31 PM UTC-4, John Murphy wrote: That page gives an XML error on all the P2 sites. More to the point, I am trying to get the full version of GWT Designer as I have installed

Re: Can we use GWT code with IndexedDB to provide offline support in browsers

2013-08-26 Thread Michael Prentice
Have you looked at Elemental? http://www.gwtproject.org/articles/elemental.html It is 'experimental' but it may be helpful for what you are doing. On Friday, August 23, 2013 3:35:50 AM UTC-4, NITIN PANDEY wrote: Hi, I have an issue is that I have to provide offline support using my GWT

Re: gwt-google-apis library

2013-08-26 Thread Michael Prentice
That sounds like a great idea to me unless there is a new library that someone knows about to handle this. Hopefully someone on the SC sees this. On Thursday, August 22, 2013 10:43:52 AM UTC-4, Ümit Seren wrote: This question should be posted on the gwt-google-apis forum but I am not sure

Re: Roadmap

2013-08-26 Thread Michael Prentice
That's a great video that is 'mostly' correct about everything (based on gwt-contrib and gwt-steering discussions). That information really needs to make its way to gwtproject.org. On Thursday, August 22, 2013 12:20:37 PM UTC-4, Thomas Broyer wrote:

Re: How do I avoid this issue?

2013-08-26 Thread Michael Prentice
I'm not sure how to avoid it but I've starred it. Sounds like a pretty nasty issue. On Wednesday, August 21, 2013 4:21:31 PM UTC-4, Joel Cairney wrote: I'm working on a large GWT application, and on chrome for android we're running into these issues:

Re: Roadmap

2013-08-26 Thread Michael Prentice
*GWT-Ext has been superseded by Smart GWT. Smart GWT is an open source (LGPL), GWT-based framework that allows you to not only utilize its comprehensive widget library for your application UI, but also tie these widgets in with your server-side for data management.* - From the GWT-Ext website.

Re: EventBus problem

2013-08-21 Thread Michael Prentice
I can't see in the code where you initialize your eventBus. I also can't see where you set it on your presenter. I know that Eric K was saying that he doesn't fire events in his JUnit tests, instead he just calls the handler directly on the presenter and passes in the event. On Tuesday,

Re: issue with tomcat server

2013-08-21 Thread Michael Prentice
http://stackoverflow.com/questions/8446704/memory-allocation-in-tomcat On Wednesday, August 21, 2013 11:41:02 AM UTC-4, fedex wrote: how to change it? any idea? On Wednesday, August 21, 2013 9:10:22 AM UTC-5, Michael Joyner wrote: You need to change how much memory java is allowed to

Re: Need Editor Framework help

2013-08-20 Thread Michael Prentice
to figure out whether EF will work for us or not. Maybe we'll end up using it in certain places but not in others. We'll see... On Tuesday, August 20, 2013 6:03:29 AM UTC-4, Thomas Broyer wrote: On Tuesday, August 20, 2013 12:44:22 AM UTC+2, Michael Prentice wrote: I spent most of Friday

Re: Running over ubuntu

2013-08-20 Thread Michael Prentice
Right click on your project in Eclipse, Build Path-Configure Build Path. On the Libraries tab, Add External Jars and then point it to gwt-dev.jar, gwt-user.jar, and the two validation-api*.jars in the same dir (in your GWT SDK dir). If you are upgrading your SDK, you probably want to generate

Need Editor Framework help

2013-08-19 Thread Michael Prentice
, and various blogs plus the DynaTableRf example. But while trying to implement this stuff today, it just feels wrong, like it isn't going to fit/work/etc with what I'm doing. So I'm trying to figure out if I should just not use Editor Framework at all. Thank you, Michael Prentice GDG Space Coast

Re: What's the minimum number of interfaces and classes that I should need to create for a new RpcService?

2013-08-14 Thread Michael Prentice
Thomas are you saying that instead of having this in the interface: sendRequest(GenericDto dto, AsyncCallbackGenericDto); I should have a different method in the interface for each DTO? i.e.: sendLoginReq(LoginDto dto, AsyncCallbackLoginDto ); sendGetStuffReq(GetStuffDto dto,

Re: What's the minimum number of interfaces and classes that I should need to create for a new RpcService?

2013-08-14 Thread Michael Prentice
:08 AM UTC-4, Michael Prentice wrote: Thomas are you saying that instead of having this in the interface: sendRequest(GenericDto dto, AsyncCallbackGenericDto); I should have a different method in the interface for each DTO? i.e.: sendLoginReq(LoginDto dto, AsyncCallbackLoginDto

Re: What's the minimum number of interfaces and classes that I should need to create for a new RpcService?

2013-08-13 Thread Michael Prentice
it is final So I guess tomorrow I will try to get rid of this issue while managing to maintain the generic nature of the service. Thank you for the help. I'm figuring this out finally :) On Monday, August 12, 2013 11:21:33 PM UTC-4, Michael Prentice wrote: I looked through gwt-dispatch and its

Re: What's the minimum number of interfaces and classes that I should need to create for a new RpcService?

2013-08-12 Thread Michael Prentice
of this? Is it just a minor tweak to my classes? Or do I need to start from scratch with a whole new approach? If you have a link to a project or bit of code that already demonstrates this, I would love to see it. Thank you, Michael Prentice GDG Space Coast Hope to see you at http://gwtcreate.com/ in December

Re: What's the minimum number of interfaces and classes that I should need to create for a new RpcService?

2013-08-12 Thread Michael Prentice
I looked through gwt-dispatch and its source code today but it wasn't clear that I would really be saving anything beyond what I have now, mostly just the classes and names would change. I'll take a look at the Getting Started Wiki, thanks. Yes, we are completely command pattern based on the

What's the minimum number of interfaces and classes that I should need to create for a new RpcService?

2013-08-02 Thread Michael Prentice
of this that can be improved, I can provide some sample code to help identify the solution easier. Thank you, Michael Prentice GDG Space Coast Hope to see you at http://gwtcreate.com/ in December! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

Re: GWT Designer crashes Eclipse when i switch the editor-tab to Design...

2013-07-14 Thread Michael Prentice
the fix! Gift wrapped for the GWT Designer team, but still not fixed since April! On Wednesday, May 8, 2013 4:21:08 PM UTC-4, Michael Prentice wrote: You may be able to get some more info or help at the Eclipse WindowBuilder forums here: http://www.eclipse.org/forums/index.php/f/214/ Eric

Re: [gwt-contrib] Re: GWT presentations

2013-07-12 Thread Michael Prentice
in sharing links to them. Can the links go to offsite sources like Google Docs, SlideShare, YouTube, etc? Or does the content have to be hosted by gwtproject.org? Thank you, Michael Prentice GDG Space Coast On Tuesday, May 28, 2013 1:27:59 PM UTC-4, juan_pablo_gardella wrote: Thanks! 2013/5/28

Re: GWT.create conference - call for presentations

2013-07-11 Thread Michael Prentice
This is great news. I will start making some plans to visit San Francisco in December! On Wednesday, July 10, 2013 7:10:08 AM UTC-4, Ashton Thomas wrote: Also, it may make sense to do a poster room/showcase on the second day after people (especially newcomers) have different types of GWT

Re: GWT Designer crashes Eclipse when i switch the editor-tab to Design...

2013-05-08 Thread Michael Prentice
, May 4, 2013 1:03:10 AM UTC+3, Michael Prentice wrote: Have you tried uninstalling them and reinstalling the GPE w/ the latest and matching GWT Designer? It looks like your install might have left stuff around or didn't fully complete. Many people have had this kind of issue

Re: Desktop application work with gwt website

2013-05-07 Thread Michael Prentice
edition вторник, 7 мая 2013 г., 1:54:56 UTC+4 пользователь Michael Prentice написал: GWT is open sourced and available on GitHub. So you are free to take a look at the code that handles serialization. But my first question is why would you want/need to create a desktop application

Re: Desktop application work with gwt website

2013-05-06 Thread Michael Prentice
GWT is open sourced and available on GitHub. So you are free to take a look at the code that handles serialization. But my first question is why would you want/need to create a desktop application? Is GWT not high performance enough for you in the browser? Does HTML5 not provide you with rich

Re: WindowBuilder (GWTDesigner) error

2013-05-03 Thread Michael Prentice
What does init() do? It is part of MyControlPanel()? Hard to tell you without seeing what it does. On Friday, May 3, 2013 1:58:27 AM UTC-4, Mike Dee wrote: I'm getting the following error when I try to switch to design mode. GWT Designer can't load a module because of error in gwt.xml

Re: GWT Designer crashes Eclipse when i switch the editor-tab to Design...

2013-05-03 Thread Michael Prentice
Have you tried uninstalling them and reinstalling the GPE w/ the latest and matching GWT Designer? It looks like your install might have left stuff around or didn't fully complete. Many people have had this kind of issue with the installer in 4.2. Most people recommend just starting with a new

Re: Could not find the main class: com.google.gwt.user.tools.WebAppCreator

2013-05-02 Thread Michael Prentice
What is your configuration? Are you using the GPE? Is GWT installed via the GPE or separately? Under Window-Preferences-Google-Web Toolkit, is your SDK listed and is the location correct? Can you find WebAppCreator in your GWT SDK directory? Mine is here:

Re: GWT designer in Eclipse Juno

2013-04-30 Thread Michael Prentice
? It is found in eclipse\plugins\com.google.gwt.eclipse.sdkbundle_2.5.1\gwt-2.5.1. On Sunday, April 28, 2013 6:30:19 AM UTC-4, Daniel Bonniot de Ruisselet wrote: Hi, On Thursday, April 25, 2013 7:12:14 PM UTC+2, Michael Prentice wrote: What plugins do you have installed? Install New Software

Re: GWT designer in Eclipse Juno

2013-04-25 Thread Michael Prentice
What plugins do you have installed? Install New Software - already installed. Can you post a screenshot with the GWT items expanded? On Wednesday, April 24, 2013 11:37:22 AM UTC-4, Robert Kabwogi wrote: im having the same problem... what is the solution to this problem? -- You received

Re: GWT - So terribly slow that makes development hard ... very hard ... extremely hard ...

2013-04-25 Thread Michael Prentice
What version of GWT are you using? Have you done anything with your settings to improve performance of the compiler? There are a lot of documents, slides, and videos that cover this. Have you used SuperDev mode? Your post is lacking of any real content and almost looks like trolling. On

Re: Google Plus api php

2013-04-08 Thread Michael Prentice
Looks like a problem with the Google APIs and not GWT. Perhaps contact someone responsible for Google+ APIs? On Sunday, April 7, 2013 5:35:34 PM UTC-4, Олег Ильїн wrote: Hi to all. I have a some problem width using google api. I use php sdk for generate oAuth 2.0 access_token, and try to

Re: Hover Functionality

2013-04-05 Thread Michael Prentice
In your dev mode, do you see any errors in the console (might need to send a sever request to see it) like this? [WARN] Server class 'com.x.x.Class' could not be found in the web app, but was found on the system classpath [WARN] Adding classpath entry 'file:/D:/librarydir/library.jar' to the

Re: Problems adding Click Handler to Grid

2013-04-05 Thread Michael Prentice
I just tried this: grid.addClickHandler(new ClickHandler() { public void onClick(ClickEvent event) { System.out.println(Grid Clicked!); } }); And it works just fine. What Window class are you importing? I just tried it with import com.google.gwt.user.client.Window; and it

Re: GWT Designer - MenuBar

2013-04-04 Thread Michael Prentice
The links in this discussion show that this was fixed on Jan 16th, 2013. http://code.google.com/p/gwt-designer/source/detail?r=99 But it is not clear from the change or the issue in what version this fix was delivered. I would guess 2.5.1? On Wednesday, April 3, 2013 2:28:14 PM UTC-4,

Re: Diagnose GWT DMP Plugin crashes on Chrome

2013-03-28 Thread Michael Prentice
No luck. Just ran into this again. Restarting Chrome, again, fixed it. On Wednesday, March 27, 2013 2:28:50 PM UTC-4, Michael Prentice wrote: OK, I'll give that a shot with: *-XX:MaxPermSize=384m* Thanks a lot. On Wednesday, March 27, 2013 10:03:08 AM UTC-4, xsee wrote: Try setting your

Re: Are VerticalPanel and HorizontalPanel (informally) deprecated in GWT 2.0?

2013-03-28 Thread Michael Prentice
That's a great question. I would like to know where this stands today. On Saturday, March 13, 2010 7:10:19 AM UTC-5, Δημήτρης Μενούνος wrote: I hope not! There is nothing wrong with using Components backed by tables. Especially in the context of building complex web-app UIs, where floated

Re: GWT Beginner's Tutorial

2013-03-28 Thread Michael Prentice
I really have enjoyed Marty Hall's slides and tutorials. The one that I have been using lately is http://www.slideshare.net/martyhall/gwt-tutorial-laying-out-windows-with-panels-part-ii-composite-panels (GWT 2.5 from May 2012). But you can find all of his GWT training slides here:

Re: Diagnose GWT DMP Plugin crashes on Chrome

2013-03-27 Thread Michael Prentice
OK, I'll give that a shot with: *-XX:MaxPermSize=384m* Thanks a lot. On Wednesday, March 27, 2013 10:03:08 AM UTC-4, xsee wrote: Try setting your maxPermSize in the VM args section of your launch config (mine is at 384). This keeps my Chrome plugin running all day with no problems on a

Re: Closing GWT application

2013-03-26 Thread Michael Prentice
() { window.open('','_self',''); window.close(); }/script On Monday, March 25, 2013 1:07:23 PM UTC-4, Michael Prentice wrote: This answer has what you are looking for: http://stackoverflow.com/questions/8617055/how-to-run-javascript-function-from-gwt-java-with-jsni

Re: Diagnose GWT DMP Plugin crashes on Chrome

2013-03-26 Thread Michael Prentice
I'm having a lot of issues with this too. It will run fine for a number of hours, but often by the end of the day, I can't load up the website because the plugin never even contacts the server. I have to re-start Chrome to get things working again. It is really not ideal. I've briefly looked

Re: Closing GWT application

2013-03-25 Thread Michael Prentice
and/or normal Java editors as Nalini needs. On Tuesday, March 12, 2013 11:40:15 PM UTC-4, Michael Prentice wrote: Here is how you do it on Chrome and IE: http://productforums.google.com/forum/#!topic/chrome/GjsCrvPYGlA http://productforums.google.com/forum/#!topic/chrome/k7aKtZlalqU script type

Re: GWT RPC Serialization stops working when migration from 2.4.0 to 2.5.1

2013-03-25 Thread Michael Prentice
Have you cleared out your gwt-unitCache? On Monday, March 25, 2013 1:01:28 PM UTC-4, Paulo Martins wrote: I've updated my project from GWT 2.4.0 to GWT 2.5.1 and suddenly a specific RPC serialization has stopped work (all other are still working). I have this class: public class

Re: Where can I find gwt-servlet.jar source jar?

2013-03-20 Thread Michael Prentice
OK, thank you. I verified that I do not have swt-servlet.jar in my classpath. I also verified that I have gwt-user.jar in my classpath and that it is set to point to itself for sources. I don't use Maven. It seems like Eclipse figured things out now as I'm getting JavaDoc and can browse to

Re: Not able to store JSON data in offline mode( SQLLite + MGWT)

2013-03-20 Thread Michael Prentice
How big is your database? i.e. how much data did you put in there before this call failed? On Monday, March 18, 2013 10:51:52 AM UTC-4, rahul@darkhorseboa.com wrote: I am using Mgwt and SQLLite for andriod development. I am not able to store the JSON Data in offline mode. I am getting

Re: Compiler exception after upgrade to 2.5.1

2013-03-20 Thread Michael Prentice
I thought that it might be the temp folder in user/applocal/temp, but that didn't fix it. The fix came when I deleted the /gwt-unitCache dir within the root directory of my project. Thank you! I hit this today after upgrading to 2.5.1 yesterday. On Wednesday, March 20, 2013 2:14:22 PM UTC-4,

Where can I find gwt-servlet.jar source jar?

2013-03-19 Thread Michael Prentice
The source is included with gwt-dev.jar and gwt-user.jar and likely some others. But it is not included with gwt-servlet.jar. I've done a number of Google searches and searched here on Google Groups. But I haven't found an answer to this specific issue. Specifically, I am trying to get at the

Re: Can't get through the GWT Designer quick start

2013-03-18 Thread Michael Prentice
When you install the GPE with GWT, your SDK dir will be something like this: eclipse install direclipse\plugins\com.google.gwt.eclipse.sdkbundle_2.5.0.v201212122042-rel-r42\gwt-2.5.0 You should have selected to install the GWT Designer when you installed the GPE from here:

Re: Can't get through the GWT Designer quick start

2013-03-18 Thread Michael Prentice
more helpful presentation video here at Google I/O 2011 by Eric Clayberg: http://www.youtube.com/watch?v=kV5H3rGfqOElist=PL054F0C97D9D7706Bindex=12 On Monday, March 18, 2013 10:29:24 AM UTC-4, Michael Prentice wrote: When you install the GPE with GWT, your SDK dir will be something like

Re: Aw: what kind of MVP to use, what is current best practice

2013-03-16 Thread Michael Prentice
Thank you very much for this discussion. I found it very helpful in clarifying Activities, Places, and MVP. I've got my server side architecture figured out mostly (other than Guice/DI). Now this helps me to put into place my client side architecture (other than GIN/DI). Now I just need to

Re: No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2013-03-15 Thread Michael Prentice
I ran into this sort of a problem today. I followed the steps from TONS of articles, tutorials, guides, and posts. But none worked! Here was the final solution after hours of banging my head: I was using the source path tag wrong in gwt.xml in my external jar: *WRONG:* source path='auto.dto'/

  1   2   >