Re: GWT 2.7.0 is here

2014-11-22 Thread Peter Ondruška
Thanks but still no update on Eclipse update site (as mentioned in http://www.gwtproject.org/download.html). And fix the wording on the same page: The Google Plugin for Eclipse provides IDE support for the GWT and App Engine web projects, and includes a lightweight version of GWT Designer. GWT

Re: GWT 2.6.1 is now available

2014-05-12 Thread Peter Ondruška
Hello, any chance to have this updated in Google Plugin for Eclipse - http://dl.google.com/eclipse/plugin/4.3 as well? It still lists 2.6.0 as latest. On Friday, 9 May 2014 23:54:20 UTC+2, Daniel Kurka wrote: Hi GWT community, We're excited to announce the GWT 2.6.1 release! Many of you

Re: GWT doesn't work in eclipse

2011-05-01 Thread Peter Ondruška
http://code.google.com/appengine/docs/whatisgoogleappengine.html -- 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: CellList with ListDataProvider does not get redrawn on data change

2011-02-07 Thread Peter Ondruška
OK got it working. It works as documented. I just got error in my TextColumns which silently resulted in no data displayed. Watch for nulls! -- 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: CellList with ListDataProvider does not get redrawn on data change

2011-02-05 Thread Peter Ondruška
Same also with code based on AsyncDataProvider. Does anybody have a working example of updating CellTable from within callback? -- 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: how to modify the default port (8080) of hosted mode ?

2009-06-16 Thread Peter Ondruška
Use the -port parameter to set non-default. 2009/6/16, Benibur benj...@gmail.com: There is a port conflict on my server since GWT hosted mode and another web application use the same port (8080) The point is widely discussed over the internet, but the solution is always : modify the port of

Re: Server initialization

2009-06-10 Thread Peter Ondruška
Well, that is what I am doing. I open resources like database in init method and close in destroy. Peter 2009/6/10, Keith Whittingham kwhitting...@gmail.com: Anyone know of a nice way of initializing the server before the client gets busy. The only thing I can think of is overriding init()

Re: Accessing a DB

2009-06-09 Thread Peter Ondruška
As with anything unless you test you are never sure. For example there used to be a bug in Jetty long time ago which allowed access to WEB-INF content. This is fixed but such a bug can be introduced with other containers as well. Just my €.02. Peter 2009/6/9, mnenchev nenchev.mari...@gmail.com:

Re: Update automatically using GWT

2009-06-05 Thread Peter Ondruška
See Timer class. On Fri, Jun 5, 2009 at 4:28 PM, bosangjay bosang...@yahoo.com wrote: Hi, I want to create a GWT application that can update automatically. For example, a website that gives us a live information for a tennis match (like the BBC LIVE TEXT COMMENTARY). My idea is that the

Re: GWT RPC Encryption

2009-05-29 Thread Peter Ondruška
You may be interested in data signing not encryption. On Sat, May 30, 2009 at 5:09 AM, Deep Blue deep.blue...@gmail.com wrote: Hi, Thanks all for the comments / opinions. I agreed with Daniel and Jason that we shouldn't send any extra info. to client and protect from server side.

Re: Need some design related help

2009-05-25 Thread Peter Ondruška
Have a look at Google Gears it should be able to solve all your issues. 2009/5/25, vijay mymail.vi...@gmail.com: HI All,I am working on a application using GWT and AppEngine (Java with datastore) , got stuck in design phase. The application need to take input from barcode reader and will

Re: How to gray out readonly text in a text box

2009-05-20 Thread Peter Ondruška
Anything you put to WEB-INF folder will not be served by the web server. That folder is for configuration files. Place css into root folder or any other folder. 2009/5/20, Rob Tanner caspersg...@gmail.com: If I don't explicitly set a style for a TextBox widget, it picks up the stylesheet

Re: GWT Images loaded from GAE's Big Table

2009-05-15 Thread Peter Ondruška
Create regular servlet which will accept parameter with image name and will write response consisting of your image (do not forget to set correct content type header). In GWT you would have just a Image with src being path to servlet plus parameter. On Fri, May 15, 2009 at 4:35 PM, Pez

Re: How to show tooltips on FlexTable?

2009-04-30 Thread Peter Ondruška
What about adding tooltip to the Widget in table cell. On Thu, Apr 30, 2009 at 11:25 AM, googelybear googelyb...@gmail.com wrote: Hi, I did not manage to display tooltips on the FlexTable (there seems to be no setTooltip(row, col, text) or similar, and also google did not yield any

Re: GWT for Solaris

2009-04-06 Thread Peter Ondruška
on Solarisright? On Apr 5, 12:02 pm, Peter Ondruška peter.ondru...@gmail.com wrote: Hello, Are there any plans to provide GWT for Solaris? If not is it OK to request this by creating bug a let vote/star for it? Thanks, Peter --~--~-~--~~~---~--~~ You

Re: GWT for Solaris

2009-04-06 Thread Peter Ondruška
Found it on Google. No Solaris yet. Starred issue 609. Peter 2009/4/6, Peter Ondruška peter.ondru...@gmail.com: Thank you. Shall I download GWT for Mac or Linux? I will try Linux and will let you know if it really runs on Open/Solaris. Peter 2009/4/6, hazy1 matt.egyh...@gmail.com: Wow, you

GWT for Solaris

2009-04-05 Thread Peter Ondruška
Hello, Are there any plans to provide GWT for Solaris? If not is it OK to request this by creating bug a let vote/star for it? Thanks, Peter --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Adding GWT widget in a simple web app

2009-03-30 Thread Peter Ondruška
Yes it is easy. See a live sample at http://www.kaibo.eu/home.html. The contact dialog box is added using: RootPanel.get(contactme).add(p); // p is just a panel and the html page as a div for it: div id=contactme/div Peter On Mon, Mar 30, 2009 at 10:05 AM, lan anouar.khem...@gmail.com wrote:

Re: Changing application path in production

2009-03-28 Thread Peter Ondruška
You can use Apache's mod_redirect but I find it easier just to put all files in com.foo.bar.gwt.client.Main to web application root directory and use welcome-files directive in web.xml (in your case it would be Main.html). This makes Tomcat to serve xyz.com/abc/Main.html as xyz.com/abc On Mar

Re: PDF version of the GWT Developer Guide -- any time soon?

2009-03-18 Thread Peter Ondruška
Nice, but not downloadable for offline access. Perhaps some Gears offline functionality (pretty easy) needs to be added... On Wed, Mar 18, 2009 at 1:55 AM, Brian hibr...@gmail.com wrote: Moribund? I loved their games, especially Raid On Bungling Bay... :) I don't know anything about a PDF

Re: How to call a servlet from GWT

2009-03-11 Thread Peter Ondruška
See RequestBuilder 2009/3/11, shajeer kt shajeerkt...@gmail.com: Dear all, How to call a servlet from GWT code . Along with calling servlet i want to pass some parameters with it.. How is it possible. Is it the wrong forum to ask this question . Any help would be

Re: Search Engine Indexing

2009-01-25 Thread Peter Ondruška
Following discussion on indexing AJAX applications I have to ask if those who wonder why their GWT applications cannot be indexed if you expect search engines to index Java applets or Flash out there on the web, or compressed files and executable files? And if somehow GWT application get indexed

Re: What are you using for a backend??

2009-01-20 Thread Peter Ondruška
For RPC I use JSON but if GWT RPC is needed for my deployment I would go for Amazon EC2. There are plenty of virtual machine types available that provide java servlets. Peter 2009/1/20, sloughran slough...@gmail.com: So, in my messing around with GWT for the past year or so, I have been using

Re: GWT with non-Java backend

2008-12-01 Thread Peter Ondruška
I use GWT with Google App Engine backend with RequestBuilder. 2008/12/1, ajay jetti [EMAIL PROTECTED]: This should help i think http://angel.hurtado.googlepages.com/tutorialgwt2 yours Ajay --~--~-~--~~~---~--~~ You received this message because you are

Re: Problem with the import java.security.*;

2008-11-28 Thread Peter Ondruška
I do not think you can do that with GWT. Therefore I use http://uuid-service.appspot.com though not with GWT application. Peter 2008/11/28, Phani [EMAIL PROTECTED]: Hi All, In my application i have to implement a unique number generation i.e UUID using SecureRandom class of java.security

RadioButton value

2008-11-24 Thread Peter Ondruška
Hello, I use GWT 1.5.3. I post to CGI backend a form. This form has group of RadioButtons: RadioButton yes = new RadioButton(answer, yes) RadioButton no = new RadioButton(answer, no) But the values posted to backed are: answer=on No matter what button was checked. I would expect something

Re: RadioButton value

2008-11-24 Thread Peter Ondruška
OK, found it as bug http://code.google.com/p/google-web-toolkit/issues/detail?id=458 On Mon, Nov 24, 2008 at 16:53, Peter Ondruška [EMAIL PROTECTED] wrote: Hello, I use GWT 1.5.3. I post to CGI backend a form. This form has group of RadioButtons: RadioButton yes = new RadioButton(answer