Re: GWT best Practices - JS Library Wrappers & Overlay Types

2009-06-14 Thread Bobby
I ended up updating the following classes to generics: 1. com.google.gwt.gdata.client.atom.Feed 2. com.google.gwt.gdata.client.Feed 3. com.google.gwt.gdata.client.EventFeed The implementation is, respectively: 1. public class Feed extends JavaScriptObject 2. public class Feed extends com.google.g

Re: Community announcements on GWT blog

2009-06-14 Thread Shawn Brown
Because it's just a community announcement. I use ExtGWT too so understand your question. They're just pointing out related projects like Gilead which I do use! If ExtGWT wants to announce a release but the blog says no, then let's raise a ruckus. I bet it won't ever happen though. Shawn On

gwt form

2009-06-14 Thread zhyar
Hi All, I want to create gwt form with (http request POST method) and retrieve the data in PHP file ,so please can one help me..?. regards, zhyar. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit"

Community announcements on GWT blog

2009-06-14 Thread Miles T.
Hi, I wonder why GWT blog is talking about SmartGWT but not about ExtGWT. Should we see a preference from GWT team ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group,

gmail fall back to plain html run on server side

2009-06-14 Thread asianCoolz
when using browser that do not support javascript, gmail will able to run in plain html on server side. how to do similar with existing gwt app ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" gr

Eclipse is not stopping on breakpoints in GWTTest. Why?

2009-06-14 Thread Igor Moochnick
Can;t figure out why Eclipse (during debug) is not stopping on breakpoints both in hosted and web modes. I've checked that I have all the reqired configuration, all the source folders are included on the class path. Any suggestions? BTW: Eclipse stopping on all the breakpoints during normal deb

DialogBox Width Problem in v.1.6.4

2009-06-14 Thread Ed
Hi, After upgrading to v.1.6.4 from v.1.5.3 using the GWT plugin for Eclipse, the width of my dialog box changed. In the previous version, the child widget (absolute panel, width 300) is displayed exactly inside the dialog box, but now the right border of the dialog box extends about 100px beyond

Re: GWT best Practices - JS Library Wrappers & Overlay Types

2009-06-14 Thread Bobby
I may be able to leave the inheritance in place without having problems with overrides by just adding generics. The Feed and Entry classes are the ones that are specialized in the API. The Java API has the Feed and Entry classes as generics, for example: http://code.google.com/apis/gdata/javadoc/c

Re: GWT+ Gmaps doesnt work in firefox

2009-06-14 Thread G
Eric - Thanks for your quick response (that too on a Sunday) :-) I was now able to locate where it is causing exception in firefox but not in hosted mode. I am using the RequestBuilder class to create the POST request to another servlet and parse the response. The problem is in the hosted mode,

Re: GWT+ Gmaps doesnt work in firefox

2009-06-14 Thread Eric Ayers
Hosted mode catches most but not all errors. The best thing to do is to try to narrow down the error. Try adding try/catch blocks around the code to help isolate it. On Sun, Jun 14, 2009 at 9:22 PM, G wrote: > > Hello - > > I am using GWT 1.5.3 and Gwt-maps1.0.4. My apps works perfectly fine >

GWT+ Gmaps doesnt work in firefox

2009-06-14 Thread G
Hello - I am using GWT 1.5.3 and Gwt-maps1.0.4. My apps works perfectly fine in the hosted mode (when launched from GetMap-shell.cmd). But, when I click on "Compile & Browse", it opens up in firefox doesn't work. My application sets the marker position at regular intervals (depending on current

Re: Generating UI with GWT or PHP

2009-06-14 Thread Ian Bambury
A simpler solution with no Ajax call would be: public class MyProject implements EntryPoint { public void onModuleLoad() { RootPanel.get().add(new Label(Dictionary.getDictionary("user").get("name"))); } } Ian http://examples.roughian.com 2009/6/14 markww > > Hi, > > This i

Re: GWT best Practices - JS Library Wrappers & Overlay Types

2009-06-14 Thread Bobby
A few more comments. There's a new version of the GData JS API (1.10) which is a little larger - luckily i should be able to point the code generator to the new docs and be up to speed. Also, i had a closer look at the Java, Python and .NET versions and they're all very out of sync with eachother.

Re: How to bookmark?

2009-06-14 Thread gscholt
History.newItem() On Jun 14, 9:39 pm, markww wrote: > Hi, > > I need to store the state of my GWT app in the user's browser address > bar for bookmarking. For example, when visitors use my web app, > they'll be directed to: > >    www.mysite.com/index.html > > where index.html hosts the GWT comp

How to bookmark?

2009-06-14 Thread markww
Hi, I need to store the state of my GWT app in the user's browser address bar for bookmarking. For example, when visitors use my web app, they'll be directed to: www.mysite.com/index.html where index.html hosts the GWT compiled app script. Now through my app's interface, the user may create

Servlet mapping

2009-06-14 Thread Will.Xu
Hi I want to use one module (A) to declare and implement all RPCs. For example, in module A there is a RPC AService. The servlet url pattern is /A/AService But when I use AService in module B, the servlet url pattern should be /B/AService. The problem is how can I configure to let all the modules

Re: Generating UI with GWT or PHP

2009-06-14 Thread Mark
Hi Jeff, I took a look at the presentation you linked, it pretty much sums up all the reasons I want to use GWT. You're right, I'll basically have to make a prototype and see how it works for my end users, Thanks On Jun 14, 12:28 pm, Jeff Chimene wrote: > On 06/13/2009 08:40 PM, markww wrote:

Re: Generating UI with GWT or PHP

2009-06-14 Thread Jeff Chimene
On 06/13/2009 08:40 PM, markww wrote: > Hi, > > This is a general question about GWT and user interfaces. In my > (limited) use with PHP, the server was responsible for generation of > most of the 'UI'. Each script would emit some html which the client > browsers download and render. > > If we wan

history does not work propertly

2009-06-14 Thread Gabriel Gutierrez
Does anyone knows why history does not ork propertly on IE ? I have this on my .html and on my java code History.addValueChangeHandler(this); String initToken = History.getToken(); if (initToken.length() == 0) { History.newItem("index"); } History.fireCurrentHistoryState(); So in fir

When to extend base class vs and when to extend composite?

2009-06-14 Thread Dalla
I had some issues earlier when trying to extend Composite and using a Dialog Box as the base panel. Got errors saying that the parent class didn´t implement the HasWidgets interface. Directly extending the Dialog Box worked fine however. I have no problem using ScrollTable as a base panel in a co

MVC question

2009-06-14 Thread Dalla
Hi all! I´ve been working pretty much with MVC in Struts 2, but it´s a pretty different story using MVC, so I have a question. >From what I´ve read, It´s pretty much: On user input, View calls Controller. Controller updates Model. Model fires event, which is observed by the View. View updates b

Re: Gilead GWT adapter for Google AppEngine

2009-06-14 Thread Alex
Hi Bruno, Great job! But what about the rest of GAE datastore classes like Text, Blob, ShortBlob, User? I have entities with the User fields. I assume it is not possible to pass them into client and back via RPC without transformation. It will be great if you can solve the problem. Best regard

Re: i cant run Web Application Project in eclipse

2009-06-14 Thread kojot
> > It sounds like the problem is that, while GWT comes with a 32-bit > > version of SWT, you're using a 64-bit JVM. If you switch to a 32-bit > > JVM, then you'll be set! (and in future versions of GWT, once we have > > the OOPHM feature, it won't be an issue) > > Probably I'm missing something o

Panel is repeating

2009-06-14 Thread bhanu
Hi In my login application, when I click login button, I am displaying a panel it contains a simple Label which shows welcome user. That panel is displaying properly. but the problem is it is repeating two times. In my login.html I have declared So Iam using RootPanel.get("username").add(panel);

Cross Domain with window.name

2009-06-14 Thread Chris
I am trying to get a cross domain solution working using Ray Cromwell's solution. Has anyone gotten this to work with GWT 1.6? Any samples out there showing how it is supposed to be wired up. I can't seem to get the post result to be available in the application. When the FormPanel creates the

Re: i cant run Web Application Project in eclipse

2009-06-14 Thread kojot
forgot to add, mozilla 1.7 also requires libstdc++33-32bit On Jun 14, 9:42 am, Paweł Prażak wrote: > Hi! > > I have the same problem (as anyone with modern system) and 32bit JVM > (with dependencies) is not enough. > You need (names for openSUSE): > - gtk2-32bit > - libgthread-2_0-0-32bit > --~

Re: i cant run Web Application Project in eclipse

2009-06-14 Thread Paweł Prażak
Hi! I have the same problem (as anyone with modern system) and 32bit JVM (with dependencies) is not enough. You need (names for openSUSE): - gtk2-32bit - libgthread-2_0-0-32bit Try to install libgtk2-32bit. When 64bit GWT will be available (because having 32bit JVM with 20+ dependencies instal

Re: redirect without loosing state

2009-06-14 Thread gscholt
Either access the other site through a XMLHttpRequest (via the RequestBuilder), or just pass a History token so specify which part of the ui to show. On Jun 12, 9:49 pm, michaael_l wrote: > Hi guys. I'm not quite new to GWT, but I've recently faced quite > frustrating problem, that I'm unable to