Re: Future of GWT survey

2012-10-29 Thread Sebastián Gurin
Done!, hey ! you don't have Uruguay in you country select box :( -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/QAtatRSv2TIJ. To post to this

Re: GWT Precompress on tomcat 7

2012-10-29 Thread Dhamu
Hi, Any update on this post? I too have same question here. Please if anyone have idea regarding this thread, reply on this. Thanks, On Tuesday, February 28, 2012 3:46:42 AM UTC+5:30, Sameeh Harfoush wrote: Hello i am trying to use com.google.gwt.precompress.Precompress in my project. i

Re: GWT Precompress on tomcat 7

2012-10-29 Thread Thomas Broyer
See https://groups.google.com/d/topic/google-web-toolkit/5LyA2StOrY0/discussion On Monday, October 29, 2012 10:56:03 AM UTC+1, Dhamu wrote: Hi, Any update on this post? I too have same question here. Please if anyone have idea regarding this thread, reply on this. Thanks, On Tuesday,

Re: Pre-Compress GWT compiler output for web server

2012-10-29 Thread Dhamu
Hi, Any update on this? How can i tell to tomcat about gz files of GWT? Thanks On Friday, August 7, 2009 12:10:27 PM UTC+5:30, JavaTech wrote: Hi all I am using the Tomcat 6.0 As i believe we need to setting the web.xml in the following path C: \Program Files\Apache Software

Re: Issue while upgrading to to GWT 2.5RC build

2012-10-29 Thread Ajax
You might have a corrupt gwt-user.jar; if your SHA checksum doesn't match the one from code.google.com/p/google-web-toolkit/ then you should unzip a fresh copy. Either that, or your IDE is recompiling the classes as the builder is running, so it gets an IO exception when trying to lookup

Re: Issue while upgrading to to GWT 2.5RC build

2012-10-29 Thread Ajax
Also, if you are using an IBM JDK, please look here: https://groups.google.com/forum/?fromgroups=#!topic/google-web-toolkit/5iL8i06mhC0 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Can't get Google Crawler to index my GWT-based site no matter what I do. Help!

2012-10-29 Thread Gonzalo Ferreyra Jofré
Hello, the hashbang is inversed (!#) in your URLs in the xml. Should be this way #! Try switching the position of the hash On Monday, October 29, 2012 6:46:46 AM UTC+1, Benjamin Possolo wrote: On Sunday, October 28, 2012 7:28:05 AM UTC-7, ant...@gmail.com wrote: Your URLs could be further

Re: Can't get Google Crawler to index my GWT-based site no matter what I do. Help!

2012-10-29 Thread Gonzalo Ferreyra Jofré
Hello, the hashbang is inverted (!#) in your URLs in the xml. Should be this way #! Try switching the position of the hash On Monday, October 29, 2012 6:46:46 AM UTC+1, Benjamin Possolo wrote: On Sunday, October 28, 2012 7:28:05 AM UTC-7, ant...@gmail.com wrote: Your URLs could be further

Re: extending uiBinder - give support to 3rd party GUI JavaScript toolkits

2012-10-29 Thread Sebastián Gurin
Nino, thank you for you comments. Finnaly I was able to create a simple GWT Widget class hierarchy that wrap my YUI widgets, extending Composite class. So I'm using widgets minimally, but not events - if the user wants events support then it should use the YUI Event API in its .java files, not

Re: gwt 2.5/PrecompressLinker useless with tomcat/jboss?

2012-10-29 Thread jhulford
To handle this in Tomcat, I wrote a little servlet filter that basically uses a request wrapper to re-write the request, pointing it to the precompressed .gz version of the files if the request has a gzip Accept-Encoding header before forwarding it through the filter chain. Then changed the

xsiframe linker : Having access denied problem for scriptFrame.contentDocument in IE

2012-10-29 Thread zz
I am creating a bookmarklet with GWT and used the suggested xsiframe linker to handle the cross domain issue. What's in the bookmark is just inserting a script tag referencing the mybookmark.nocache.js. It's working pretty fine in chrome and firefox. and here comes the problem for IE, hmm

Re: extending uiBinder - give support to 3rd party GUI JavaScript toolkits

2012-10-29 Thread Joseph Lust
Sebastián, Depending on how you're implementing these in UiBinder, you could use the @UiChild annotation and let the parent create its children. This way it can create and story references to the parent of the child as needed because it creates them. Sincerely, Joseph -- You received this

Re: Can't get Google Crawler to index my GWT-based site no matter what I do. Help!

2012-10-29 Thread Benjamin Possolo
On Monday, October 29, 2012 4:28:11 AM UTC-7, Gonzalo Ferreyra Jofré wrote: Hello, the hashbang is inverted (!#) in your URLs in the xml. Should be this way #! Try switching the position of the hash Oh wow! big mistake on my behalf. thank you for catching that!! i wonder if that will do

Re: Can't get Google Crawler to index my GWT-based site no matter what I do. Help!

2012-10-29 Thread Benjamin Possolo
It looks like that may have done the trick. I am not 100% certain if it was that because my app engine log files are showing a ton of traffic from the google bot yesterday at night. either way, thanks for finding that major mistake. googling site:marketplace.styleguise.net is now finally

Re: Pre-Compress GWT compiler output for web server

2012-10-29 Thread Joseph Lust
The general solution is to setup your Tomcat behind an Apache server. * mod_headers* works well on just Apache, so you can use a filter there with * mod_headers* to add the gzip headers. This way the browser knows that this js file is gz encoded. A tip, I noticed if I just name files like

Re: Pre-Compress GWT compiler output for web server

2012-10-29 Thread Thomas Broyer
On Monday, October 29, 2012 6:46:45 PM UTC+1, Joseph Lust wrote: The general solution is to setup your Tomcat behind an Apache server. * mod_headers* works well on just Apache, so you can use a filter there with *mod_headers* to add the gzip headers. This way the browser knows that this

caching background image

2012-10-29 Thread Magnus
Hi, my app has a background image which is attached to the main panel with the CSS attribute background-image. I would like to avoid unecessary loading of this image by having it cached in the browsers for a long time. I know methods for the apache web server, e. g. mod_expires. But my app

GWT vs SmartGWT

2012-10-29 Thread kumar thatikonda
Hi All, Please let me know which one is better(GWT or SmartGWT) for developing a web application considering the below scenario. 1. Will use only for developing the screens and client side validations. 2. Needs to communicate with server through wsdls. 3. Performance (initial screen loading

External Server communication with HTTP requests

2012-10-29 Thread John P
Hello, I need support for the communication with external services like Google Maps API. The following code and websites includes my concerns. At first I want to get a google map with a HTTP request. The following website shows the information for my intention.

Re: Problems with GWT-RPC: encodedRequest cannot be empty

2012-10-29 Thread Román Wasinger
Hi, Have you figured it out? I'm experiencing similar issue and I have no clue about what is causing it. If you have a solution or workaround, could you please share it? Thank you, Román On Monday, April 16, 2012 2:08:41 PM UTC-3, kishorpatel415 wrote: Hi, We are using GWT 2.3. Our

Re: passing json between asp.net and gwt

2012-10-29 Thread Amir Zandi
Hi Sarikan, I am a .net developer just like you, and I have trouble in making connection between my GWT and vb.net functions I do have in my server. if you have a sample, would you please put them or email me at amir.za...@gmail.com thank you On Saturday, December 15, 2007 9:26:44 PM

GWT to vb.net public function

2012-10-29 Thread Amir Zandi
Dear all, I was wondering that whether it is possible to make a connection between my GWT and VB.NET function like what we did on jQuery using $.ajax method: post, or not. if it is possible, I would be very thankful if someone has a sample or any toturial which would be helpful for me! Thank

GWT vs SmartGWT

2012-10-29 Thread kumar thatikonda
Hi All, Can you please let me know which of the option( GWT or SmartGWT) is better, considering the below scenario. 1. Will be used for designing screens and client-side validations. 2. Performance ( page loading , grid loading) should be good. 3. Need to communicate with server through

performance problem on andorid using phonegap

2012-10-29 Thread andrea casati
hi all guys! i develop a very small application to test gwt the first time..so using MVC i create a button and a teextarea, pressing the button the number in the textfiel growing up this is the entry point: public void onModuleLoad() { //MODEL ModelP model = new ModelP(); //VIEW ViewP

GWT to VB.NET public function

2012-10-29 Thread Amir Zandi
Dear Users, I was wondering to know that whether it is possible to make a connection between GWT and public function created in VB.NET like what we did in jQuery using $.ajax method post, or not. if it is so, I would be very thankful if someone provide a sample or a tutorial. Thank You, Amir

Re: Catch-22 with Celltable and AsyncDataProvider

2012-10-29 Thread törzsmókus
I would not consider this a 'flaw': there is no problem in setting the row count asynchronously, way after having finished initialization. In fact, it is not even possible for the method to 'wait until the value is returned': this is the very point of asynchronous loading. The RPC call may look

Re: GWT to vb.net public function

2012-10-29 Thread Matthew Dempsky
If you just want to send an asynchronous HTTP request like jQuery's $.ajax method, then the GWT analog would be RequestBuilderhttp://google-web-toolkit.googlecode.com/svn/javadoc/2.5/com/google/gwt/http/client/RequestBuilder.html . On Sun, Oct 28, 2012 at 12:20 AM, Amir Zandi

Destroy a widget

2012-10-29 Thread Jose María Zaragoza
Hi: I use GWT 2.3 and this question may sound a little bit weird I create a Widget component calling initWidget(uiBinder.createAndBindUi(this)) into uibinder owner constructor method. public HelloWorld() { initWidget(uiBinder.createAndBindUi(this)); } Therefore, uibinder owner

Re: caching background image

2012-10-29 Thread Benjamin Possolo
If you can, use a ClientBundle. That will ensure the background image only gets downloaded once with the rest of your image resources and the spritemap produced by the client bundle should be cached by the browsers. create an interface called AppImages that extends ClientBundle (class must be

Re: Destroy a widget

2012-10-29 Thread Benjamin Possolo
I presume by uibinder owner you mean your HelloWorld class overrides the onEvent() method, is that correct? I also presume that you have some other component that is using the HelloWorld objects and attaching them to the view. For example, in your EntryPoint: HelloWorld h1 = new HelloWorld();

Re: Destroy a widget

2012-10-29 Thread Benjamin Possolo
Sorry there is a typo there. GWT.getRoot().add(panel); should be RootPanel.get().add(panel); -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Destroy a widget

2012-10-29 Thread Jens
When you create two HelloWorld widgets each of them receives its own events. If you use @UiHandler in your UiBinder widget and you want to stop receive events for a widget without removing the widget itself from the parent (for whatever reason) you have to disable your @UiHandler

Re: Could not load GWT DMP Plugin

2012-10-29 Thread Hec Nev
I'm still having the same issue. Plugin is not able to load: Could not load GWT DMP Plugin Chrome: 22.0.1229.94 m GWT DMP: 1.0.11357 On Friday, October 26, 2012 4:27:41 PM UTC-5, seas wrote: Brian, It looks like that fixed it for me. Spent about a half hour clicking around in my app

Re: GWT vs SmartGWT

2012-10-29 Thread Benjamin Possolo
I recommend straight GWT for almost everything. The other frameworks just add abstractions on top of GWT that confuse things a lot more. Designing screens: UI Binder Client-side validation: Editor framework + JSR303 validation using HibernateValidator 4.0.2GA Performance: AsyncProxy,

Re: Could not load GWT DMP Plugin

2012-10-29 Thread Brian Slesinsky
Which version of windows? On Monday, October 29, 2012 1:20:52 PM UTC-7, Hec Nev wrote: I'm still having the same issue. Plugin is not able to load: Could not load GWT DMP Plugin Chrome: 22.0.1229.94 m GWT DMP: 1.0.11357 On Friday, October 26, 2012 4:27:41 PM UTC-5, seas wrote:

Re: GWT vs SmartGWT

2012-10-29 Thread Brett Freer
I agree with Benjamin. I would add though that if the standard widgets are not a good fit for your requirements, then it is worth seriously looking at Sencha GXT (Ext-GWT) as well. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view

Re: ListDataProvider.addDataDisplay() and setRowData

2012-10-29 Thread Benjamin Possolo
ListDataProvider wraps a list collection. It allows you to modify the wrapped collection and to automatically propagate those changes to the UI. If you do not use the ListDataProvider (and just call setRowData()) directly, then you will need to call setRowData() whenever you make changes to

UIBinder - custom ElementParser for my UI Widgets.

2012-10-29 Thread Sebastián Gurin
Hi all. I'm developing UIBinder support for my GWT port of JavaScript library YUI. So far so good, but now I encounter the following problem. In YUI, there are components like TabView (similar to TabPanel / TabLayoutPanel). I would very like to support a XML syntax like TabPanel or

Re: extending uiBinder - give support to 3rd party GUI JavaScript toolkits

2012-10-29 Thread Sebastián Gurin
Thank you Joseph, I'm researching the use of @UIChild now. Also I have posted another related question at https://groups.google.com/forum/?fromgroups=#!topic/google-web-toolkit/-Ed_fnqeFTU Regards -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Could not load GWT DMP Plugin

2012-10-29 Thread Hec Nev
Windows 7 Profesional Service Pack 1 On Monday, October 29, 2012 3:00:57 PM UTC-6, Brian Slesinsky wrote: Which version of windows? On Monday, October 29, 2012 1:20:52 PM UTC-7, Hec Nev wrote: I'm still having the same issue. Plugin is not able to load: Could not load GWT DMP Plugin

Re: UIBinder - custom ElementParser for my UI Widgets.

2012-10-29 Thread Thomas Broyer
On Monday, October 29, 2012 10:44:14 PM UTC+1, Sebastián Gurin wrote: I would very like to try developing my own ElementParsers, but I cannot find how to register a custom ElementParser for my own YUI widgets. I can see a lot of people doing nasty hacks for support something similar and

Re: performance problem on andorid using phonegap

2012-10-29 Thread Luca
Andrea to help you more information are needed. Can you show how do you attach event, create widgets and populate the DOM ?? Thank you. Il giorno lunedì 29 ottobre 2012 11:07:13 UTC+1, andrea casati ha scritto: hi all guys! i develop a very small application to test gwt the first time..so

Re: Pre-Compress GWT compiler output for web server

2012-10-29 Thread Joseph Lust
@Thomas, I prefer to precompress the files where I can since there is no reason to waste the overhead recompressing them each time they're served, and since GWT supports precompression at build time. Of course you can set it up anyway you like with a pure Tomcat/Jetty setup as you point out.

Re: GWT vs SmartGWT

2012-10-29 Thread Joseph Lust
Folks in my company were just asking me this the other day. If you want an app that looks like the GXT or SmartGWT showcase, and absolutely nothing more, then use them. But you'll have to bend to their paradigms and extend their frameworks if you want more than they do. Further, these

Re: caching background image

2012-10-29 Thread Joseph Lust
You can set the cache headers from Tomcat using a filter like this examplehttp://stackoverflow.com/questions/2872613/caching-images-served-by-servlet . Or, you can also set it up in Tomcat7 with the Expiration

Re: GWT to vb.net public function

2012-10-29 Thread Amir Zandi
thank you for your reply, if you do have a sample for GWT to VB.NET public function, please provide. Yours, On Monday, October 29, 2012 11:10:47 PM UTC+3:30, Matthew Dempsky wrote: If you just want to send an asynchronous HTTP request like jQuery's $.ajax method, then the GWT analog would

Re: GWT to vb.net public function

2012-10-29 Thread Brett Freer
Amir, The thing is that GWT would be server agnostic, and so your task should be to design a VB.NET HTTP web service that you can invoke from GWT, normally returning XML or JSON back to the browser. -Brett On Tuesday, October 30, 2012 3:52:54 PM UTC+11, Amir Zandi wrote: thank you for your

Re: GWT to vb.net public function

2012-10-29 Thread Amir Zandi
a sample code would be very helpful for me :( On Tuesday, October 30, 2012 8:51:47 AM UTC+3:30, Brett Freer wrote: Amir, The thing is that GWT would be server agnostic, and so your task should be to design a VB.NET HTTP web service that you can invoke from GWT, normally returning XML or

Re: GWT to vb.net public function

2012-10-29 Thread Amir Zandi
I want it because I'm using SQL and also using LINQ for my Database works, this is why I need communication between GWT apps and VB.NET Functions... On Tuesday, October 30, 2012 8:51:47 AM UTC+3:30, Brett Freer wrote: Amir, The thing is that GWT would be server agnostic, and so your task

[gwt-contrib] Problems pushing a patch to gerrit

2012-10-29 Thread Daniel Kurka
Hi everyone, I am a little baffled that I am not able to push patches to gerrit anymore. I just tried to submit a simple patch for http://code.google.com/p/google-web-toolkit/issues/detail?id=7683 , but all I got was: To https://gwt.googlesource.com/gwt ! [remote rejected] master - master

Re: [gwt-contrib] Problems pushing a patch to gerrit

2012-10-29 Thread John A. Tamplin
On Mon, Oct 29, 2012 at 11:37 AM, Daniel Kurka kurka.dan...@gmail.comwrote: I am a little baffled that I am not able to push patches to gerrit anymore. I just tried to submit a simple patch for http://code.google.com/p/google-web-toolkit/issues/detail?id=7683 , but all I got was: To

Re: [gwt-contrib] Problems pushing a patch to gerrit

2012-10-29 Thread Matthew Dempsky
Make sure you're using git push HEAD:refs/for/master. In particular, you need to push to refs/for/master and not to master directly if you want to create a review issue. For more details, see the Gerrit documentation:

Re: [gwt-contrib] Problems pushing a patch to gerrit

2012-10-29 Thread Daniel Kurka
my bad, got it working now... 2012/10/29 Matthew Dempsky mdemp...@google.com Make sure you're using git push HEAD:refs/for/master. In particular, you need to push to refs/for/master and not to master directly if you want to create a review issue. For more details, see the Gerrit

[gwt-contrib] Re: Move Super Dev Mode to the open source repository. (issue1727804)

2012-10-29 Thread Brian Slesinsky
Not yet. SuperDevMode is still considered experimental for 2.5. But we'll be working on it soon. On Mon, Oct 29, 2012 at 12:07 PM, NK naginkoth...@gmail.com wrote: With release of GWT 2.5GA has this issue been resolved? I tried to use SuperDev mode ig 2.5 GA, , it takes to recompile my app

Re: [gwt-contrib] “GWT no longer supports ChromeFrame. The implementation caused more bugs than it solved.”

2012-10-29 Thread Unnur Gretarsdottir
OK - I'm just removing the bullet point entirely now - should be live soon On Fri, Oct 26, 2012 at 5:53 PM, Thomas Broyer t.bro...@gmail.com wrote: On Thursday, July 19, 2012 12:16:26 AM UTC+2, rdayal wrote: Hey guys, This is my fault. I mis-interpreted the code change. As the change to

[gwt-contrib] Re: Thanks minichate! (issue1863803)

2012-10-29 Thread rchandia
http://gwt-code-reviews.appspot.com/1863803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] “GWT no longer supports ChromeFrame. The implementation caused more bugs than it solved.”

2012-10-29 Thread Rajeev Dayal
Ugh, thanks Unnur. Sorry about that, Thomas. On Mon, Oct 29, 2012 at 1:02 PM, Unnur Gretarsdottir unn...@google.comwrote: OK - I'm just removing the bullet point entirely now - should be live soon On Fri, Oct 26, 2012 at 5:53 PM, Thomas Broyer t.bro...@gmail.com wrote: On Thursday,

[gwt-contrib] Re: Thanks minichate! (issue1863803)

2012-10-29 Thread skybrian
LGTM http://gwt-code-reviews.appspot.com/1863803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Thanks minichate! (issue1863803)

2012-10-29 Thread mdempsky
LGTM too http://gwt-code-reviews.appspot.com/1863803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Move Super Dev Mode to the open source repository. (issue1727804)

2012-10-29 Thread NK
With release of GWT 2.5GA has this issue been resolved? I tried to use SuperDev mode ig 2.5 GA, , it takes to recompile my app around 40to 60 sec. On Tuesday, June 5, 2012 4:06:15 AM UTC+5:30, Brian Slesinsky wrote: Reviewers: cromwellian, Description: Move Super Dev Mode to the open

[gwt-contrib] Re: Move Super Dev Mode to the open source repository. (issue1727804)

2012-10-29 Thread NK
With release of GWT 2.5GA has this issue been resolved? I tried to use SuperDev mode ig 2.5 GA, , it takes to recompile my app around 40to 60 sec. On Tuesday, June 5, 2012 4:06:15 AM UTC+5:30, Brian Slesinsky wrote: Reviewers: cromwellian, Description: Move Super Dev Mode to the open

Re: [gwt-contrib] “GWT no longer supports ChromeFrame. The implementation caused more bugs than it solved.”

2012-10-29 Thread Thomas Broyer
On Mon, Oct 29, 2012 at 9:33 PM, Rajeev Dayal rda...@google.com wrote: Ugh, thanks Unnur. Sorry about that, Thomas. No problem Rajeev. Better late than never ;-) -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Thanks minichate! (issue1863803)

2012-10-29 Thread rchandia
http://gwt-code-reviews.appspot.com/1863803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors