detect browser window closing

2009-06-09 Thread bhomass
which event should I capture to detect that the user is closing the browser window? this is issue warning if there are any dirty documents in one of the editors. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google

Adding gwt widgets to the new HTML

2009-06-09 Thread bhanu
Hi, In my gwt application I have create one Home.html apart from the main html.This html is used for when ever the user clicks login button. In that home.html I am planning to add some GWT widgets. How can I possible? Is ther any way to do? It is very urgent!!! Thanks Bhanu lakshmi

Re: What is FixedWidthGridBulkRenderer?

2009-06-09 Thread jay
Take a look here: http://code.google.com/docreader/#p=google-web-toolkit-incubators=google-web-toolkit-incubatort=BulkTableRenderers jay On Jun 8, 5:57 pm, hezjing hezj...@gmail.com wrote: What will happen if a PagingScrollTable does not have a FixedWidthGridBulkRenderer?Does this means the

Re: Eclipse - GWT - ClassNotFoundException in StockWatcher RPC tutorial

2009-06-09 Thread Paul Hargreaves
Hi, Thanks for your reply Marty. Does anyone have a link handy to the entire stockwatcher project source so I can trouble shoot as Marty suggested? Thanks Paul   - Original Message From: Marty Fried public.for...@gmail.com To: Google Web Toolkit

Alternative (not monolithic) i18n builds?

2009-06-09 Thread dmen
Hello, Is there a work around to avoid monolithic compilations per browser AND per locale? In other words can the locale be loaded dynamicaly at runtime from the boot script or the application code? Additionaly, and related to the above, can the application bundle be separate from the browser

Re: tested browsers

2009-06-09 Thread dmen
+1 I would realy like to know about this too. --~--~-~--~~~---~--~~ 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

maven tomcat:may i know what should be the correct path?

2009-06-09 Thread imgnik
Hello all, I hope someone can answer my question here because i can't find a maven tomcat group. basically, i want to deploy my app on tomcat and i did mvn tomcat:deploy while the app is deployed successfully, the page appear to be pointing to the wrong html. it reflects

Generic MemCache Facade - Please Comment To Improve The Design. Thanks! :-)

2009-06-09 Thread nellyville
package com.DatingSocial.server; import java.util.Collections; import javax.cache.Cache; import javax.cache.CacheException; import javax.cache.CacheManager; import com.google.appengine.api.datastore.Blob; public class MemCacheK, V { private Cache cache = null; private MemCache()

Re: detect browser window closing

2009-06-09 Thread mars1412
Window.addWindowCloseListener() On Jun 9, 8:44 am, bhomass bhom...@gmail.com wrote: which event should I capture to detect that the user is closing the browser window? this is issue warning if there are any dirty documents in one of the editors.

Will using GWTCompiler instead of Compiler give me the new HashMap for 1.6?

2009-06-09 Thread Estelito D. Reyes III
I have successfully updated our project to 1.6, although i'm still using the GWTCompiler instead of the Compiler, will this give me the benefits of the faster HashMap for 1.6? or is my compiled js still going to be 1.5? Thanks in advance! --~--~-~--~~~---~--~~ You

Accessing a DB

2009-06-09 Thread Sean
In regards to using RPC's to access a database, I am worried about security. I'd love to use an RPC to access a DB, but what I can't figure out is how to store the name and pw of the DB. I'm afraid if I put it right in the code someone could just read it. If I try to read it from a file, I'm

Eclipse - debugging gwt app

2009-06-09 Thread Peter Kirklewski
Hi there I created some breakpoints and am trying to run a debug but nothing happens. The program ends and eclipse doesnt switch to debug mode or stop on the brakpoints. I have put the breakpoint on this line:System.out.println(RUNNING PSQLConnection()); And I get the message in the

Re: Accessing a DB

2009-06-09 Thread mnenchev
Every thing witch is in your server package is on the server, so no one could access your private data. It is like in hibernate, that has hibernate config file where the user and pass are stored. This config file is on the server and no one has access to it. Sean wrote: In regards to using

Re: Eclipse - debugging gwt app

2009-06-09 Thread Keith Whittingham
Dumb question but did you start your app by running it or in debug mode? __ Keith Whittingham Eichstrasse 3, CH-8135, Langnau am Albis http://www.whittingham.ch keithwhitting...@mac.com (M) +41 79 820 6216 On Jun 9, 2009, at 1:54 PM, Peter Kirklewski wrote: Hi

Re: Accessing a DB

2009-06-09 Thread Sean
So, not to be paranoid or anything, but there are no tricks or anything to get into the WEB-INF folder and beyond? If I try to access it from a browser I do get the 403 (FORBIDDEN) error, I just want to make sure there's no quick turn around for that. I guess I lied, I am paranoid. Thanks for

Re: Eclipse - debugging gwt app

2009-06-09 Thread Peter Kirklewski
There is no such ting as a dumb question mate :) Being in Java EE perspective I right click on the project and then Debug As Web Application. This gives me a browser (jetty) window from witch I need to click a button which starts the method I'm trying to debug. I also tried to open the Debug

Is it possible to call a model class method from an entry-point class of gwt

2009-06-09 Thread subbu
Hi all, I want to call my model class method from an entry point java code.Such as i want to call a method on the click event of a button that will save some data to the db.Is it possible with out RCP.Some thing like the following. Button iconButton = new Button(Save, new

Re: Accessing a DB

2009-06-09 Thread mnenchev
WEB-INF is privete directory, no one outside could access it. So, storing username and pass there is totally secured, but i have never tried it. As i told you it is secured dont warry. Sean wrote: So, not to be paranoid or anything, but there are no tricks or anything to get into the WEB-INF

Re: Referencing Shared Library

2009-06-09 Thread Isaac Truett
No, you can't do that. Why is creating one tiny XML file a problem? On Mon, Jun 8, 2009 at 9:06 PM, Scott sc...@selikoff.net wrote: No one knows how to allow a GWT project to access a plain java project in eclipse without turning it into a GWT module? On Jun 3, 5:24 pm, Scott

Re: Eclipse - debugging gwt app

2009-06-09 Thread Keith Whittingham
You should get the first window which is titled Google Web Toolit Hosted Model / Port 8080 and then a second window with your application running in it with a Google Web Toolkit logo in the top right corner. On Jun 9, 2009, at 2:07 PM, Peter Kirklewski wrote: There is no such ting as a

Re: detect browser window closing

2009-06-09 Thread D L H
Or, if you're using 1.6, use Window.addCloseHandler (CloseHandlerWindow handler) or Window.addWindowClosingHandler (Window.ClosingHandler handler). The CloseHandler is used when the window closes and does not allow you to cancel the closing of the window. The ClosingHandler is used right before

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: Eclipse - debugging gwt app

2009-06-09 Thread Peter Kirklewski
I'm getting both windows in the second I click the button which triggers the method I want to debug. But the program runs right to the bottom, and it's not stopping on any of breakpoints I've set. Regards Peter Keith Whittingham wrote: You should get the first window which is titled Google

Re: Automated UI issues with Selenium - Any other good test frameworks?

2009-06-09 Thread Alejandro D. Garin
I didn't tried it but take a look at: http://code.google.com/p/webdriver/ Regards. On Mon, Jun 8, 2009 at 2:53 PM, mikelove...@gmail.com mikelove...@gmail.com wrote: Hi all, I have been using Selenium to do lots of testing which was great before. Recently my group has changed to gwt-ext

Re: Eclipse - debugging gwt app

2009-06-09 Thread Keith Whittingham
I'm really not sure what's happening. I've had a similar problem a while back and there was a copy of the source code somewhere that Eclipse was running. I was putting breakpoints in the copy code so that Eclipse didn't really put breakpoints in. I would have a quick look around your disk

Re: Passing a argument to GWT application

2009-06-09 Thread bosangjay
I don't know exactly what you mean with pass an argument to a GWT application. But I've done a web site application which I put a parameter in its url (something like http://domainename?param1=xxxparam2=). I manage to get the parameter using JSP page and transfer it to the GWT module via

Re: Eclipse - debugging gwt app

2009-06-09 Thread Miguel Méndez
Not sure if this is what you are seeing, but it appears that there is an issue with JDK 1.6.0_14 that can cause breakpoints to be ignored. Are you using that version of the JDK/JRE? On Tue, Jun 9, 2009 at 10:16 AM, Peter Kirklewski pkirklew...@gabaedevelopment.com wrote: I'm getting both

Re: Referencing Shared Library

2009-06-09 Thread Scott
Well from a design perspective, its not really a simple, stand-alone library project if the entire thing is dependent on GWT. Second, as I discovered when I tried it out, it also has to be framed with a GWT package structure. in other words, files had to be placed in sub- packages such as

GAE + GWT + password transfer

2009-06-09 Thread Shane
I've seen some pretty heated debates around the discussion boards about this, but I haven't seen a solution that people decide on. Simply put, any application that I want to write will likely perform some sort of mashup between other services, like Twitter. For me to do anything interesting, I

Re: Eclipse - debugging gwt app

2009-06-09 Thread Vishal Singh
I am also facing the same problem. The application does not stop at the break points. Vishal On Jun 9, 5:07 pm, Peter Kirklewski pkirklew...@gabaedevelopment.com wrote: There is no such ting as a dumb question mate :) Being in Java EE perspective I right click on the project and then Debug

how can set the body of html page color in gwt

2009-06-09 Thread lml
Dear all, how can set the body of html page color in gwt. I gave body bg color ,its working fine firstly.But when the entry point class loads, the bg color will disappear from the page. How can set bg color permanantly in gwt html page?. Regards, Lal

GWT Support for other browsers

2009-06-09 Thread proge
Is there a way to make GWT support other browsers? We have project for IPTV, and would like to use GWT to build the UI. But the settop box we use is having ANT Galio browser in that, I tried to create a sample project with few controls but unfortunately it doesn't works with ANT Galio browser,

navigation triggered by external html link

2009-06-09 Thread Rainer
Hi all, In my Application I create some html files with normal html links on it. These pages are displayed in a frame. I modified url to something like http://localhost/app#historyToken?parm1=val1parm2=val2. After clicking a link, my application ist reloaded completely from the start. Navigation

Very basic LoginSecurityFAQ and GWT-RPC questions

2009-06-09 Thread eags
So I read the LoginSecurityFAQ (http://code.google.com/p/google-web- toolkit-incubator/wiki/LoginSecurityFAQ) and I plan on implementing logins exactly as in the FAQ. At a high level I believe I get it but need help on the specifics so please be as detailed and specific as possible in your

Re: Eclipse - GWT - ClassNotFoundException in StockWatcher RPC tutorial

2009-06-09 Thread Rajeev Dayal
Hey Paul, If you don't mind, can you send me a zip of your source, and I can play around with it on this side and see what might be going on? That might be the most expedient way to get you going. Thanks, Rajeev On Tue, Jun 9, 2009 at 4:25 AM, Paul Hargreaves cbassthef...@yahoo.co.ukwrote:

GWT + JBOSS

2009-06-09 Thread mnenchev
Hi, could someone help me pls. I create dynamic web project in eclipse. Start jboss server from eclipse( view servers and add to it my project). In cypal run configuration i set port 8080 and uncheck use built in server in order to use my jboss). When i start the jboss from eclipse it deploys

Re: Eclipse - debugging gwt app

2009-06-09 Thread Miguel Méndez
Does it sound like the following issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=3724 . On Tue, Jun 9, 2009 at 8:14 AM, Vishal Singh singh.vi...@gmail.com wrote: I am also facing the same problem. The application does not stop at the break points. Vishal On Jun 9, 5:07

Re: Referencing Shared Library

2009-06-09 Thread Isaac Truett
Well from a design perspective, its not really a simple, stand-alone library project if the entire thing is dependent on GWT. What makes the entire thing dependent on GWT? Second, as I discovered when I tried it out, it also has to be framed with a GWT package structure. in other words,

Problem with Cookies in Firefox

2009-06-09 Thread David E.
In Firefox when accessing the sessionID cookie via a FormHandler.onSubmitComplet(FormSubmitCompleteEvent event) { } it (GWT 1.5) is wrapping the sessionID with pre/pre tags. It is not doing this in IE. Code is below, any ideas how to resolve this? Thanks, public class Login implements

Re: Accessing a DB

2009-06-09 Thread Daniel Jue
The server side classes get compiled to bytecode, like most webapps. The client side classes get compiled to bytecode and then combined into javascript. And then the bytecode goes in your WEB-INF/classes dir, and as others have said, the outside world shouldn't have access that dir. Since the

Coding Basics -- subclassing EntryPoint

2009-06-09 Thread arcy
I suppose some might consider this a nit, but the Coding Basics portion of the Developer's guide states: To begin writing a GWT module, subclass the EntryPoint class.. But you do not subclass EntryPoint, and EntryPoint is not a class. EntryPoint is an interface, and to write a GWT module, you

GWT appendchild not working in IE

2009-06-09 Thread ^Jackal
Hi guys, i'm sorry for the bad english.I have a problem with com.google.gwt.dom.client.Document appendChild method. I'm trying to add a com.google.gwt.user.client.Element (an AbsolutePanel) inside an IFrameElement but it works fine only on Firefox instead in IE it doesn't work. The code is:

Re: Contradictory info on Quirks mode in GWT tutorial

2009-06-09 Thread Jeff Chimene
On 06/07/2009 04:44 AM, william.synt...@googlemail.com wrote: There does not seem to be anywhere to advise Google about problems with the web site, so I thought making a post here might be helpful (apologies in advance if it is not). In the GWT tutorial

Re: Can`t use HttpServlet in hosted mode debugger after migrating to GWT 1.6

2009-06-09 Thread Sumit Chandel
Hi Maxime, The web.xml used by the embedded Jetty should respect the standard servlet specification. In other words, you should be able to define your servlet and have it configured in the embedded Jetty server during hosted mode debugging. A couple of questions to help you get your servlet

Re: Google Web Toolkit and Bundled LGPL Software

2009-06-09 Thread Sumit Chandel
Hi Trevor, There was a similar thread posted a little while ago on the forums (link below). I believe it will answer your questions, so I invite you to check it out (particularly Daniel Berlin's comments). http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/15ff3d452670c327

Re: Eclipse - debugging gwt app

2009-06-09 Thread Paul Hargreaves
This bug has been around for a while in eclipse. I started using eclipse about three quarters of a year ago to debug a php project I was working on. As far as I recall, the problem occurs when you have an initial break point and then set a subsequent break point on another bit source which is

GWT Configuration Problem

2009-06-09 Thread Recognition101
Hi all, I'm trying to create a new application with GWT using the eclipse plugin. I created it, and it created the greeting application by default. I changed the application, which included deleting the server.GreetingServiceImpl class. My new application compiles with no errors. However, when

Re: Eclipse - debugging gwt app

2009-06-09 Thread Miguel Méndez
Rajeev has update the issue on the GWT side and also created bugs for eclipse and Java. It really does appear to be a bug in the JRE. The good news is that there is a repro case now; hopefully it will get resolved soon. On Tue, Jun 9, 2009 at 1:39 PM, Paul Hargreaves

Re: GWT Configuration Problem

2009-06-09 Thread Todd Seiber
It is probably still mapped in your web.xml file under war/WEB-INF. On Jun 9, 1:37 pm, Recognition101 darkligh...@gmail.com wrote: Hi all, I'm trying to create a new application with GWT using the eclipse plugin. I created it, and it created the greeting application by default. I changed

Re: Problem with Cookies in Firefox

2009-06-09 Thread Todd Seiber
Is it possible that the Content Type of the response is anything other than text/html? On Jun 9, 12:39 pm, David E. dve1...@gmail.com wrote: In Firefox when accessing the sessionID cookie via a FormHandler.onSubmitComplet(FormSubmitCompleteEvent event) { } it (GWT 1.5) is wrapping the

Re: how can set the body of html page color in gwt

2009-06-09 Thread Todd Seiber
GWT 1.6 added some style injection. In your EntryPoint.gwt.xml you will find this line: inherits name='com.google.gwt.user.theme.standard.Standard'/. Just comment it out. On Jun 9, 3:20 am, lml lalumlonl...@gmail.com wrote: Dear all, how can set the body of html page color in gwt. I gave

HELLO MODERATOR

2009-06-09 Thread eags
Hi. I posted a comment last night starting a new thread called Very basic LoginSecurityFAQ and GWT-RPC questions. I guess because of the moderation it wasn't actually posted until about a half an hour ago but the timestamp on it still is for last night which means that it is buried in last

Re: Very basic LoginSecurityFAQ and GWT-RPC questions

2009-06-09 Thread eags
Someone I talked to in person (who otherwise didn't know about GWT RPC) suggested I also store the role as in {username,sessionID,timeout,role} so that I don't have to fetch and otherwise mess with the user object every request. Does that seem sane? I suppose I could also store a reference to

Re: Getting elements from a FormPanel by name

2009-06-09 Thread Todd Seiber
No I don't think you can. If you give the elements unique ids you could retrieve them directly using DOM.getElementById instead. On Jun 8, 3:00 pm, mxmtycoder spam4m...@gmail.com wrote: I have a composite where a dynamic formpanel is built (beside other widgets I add several textbox elements,

Re: GWT Configuration Problem

2009-06-09 Thread Recognition101
Thanks! That worked. I learned GWT on an older version and I don't seem to remember this whole war directory... I think I get it now though. On Jun 9, 1:52 pm, Todd Seiber todd.sei...@gmail.com wrote: It is probably still mapped in your web.xml file under war/WEB-INF. On Jun 9, 1:37 pm,

Re: Problem with sorting accentuated words

2009-06-09 Thread mdwarne
Hi, I've never used GridPanel before, however I did create a custom column sorter for the Incubator table. My sorter accepted objects that implemented the Comparable interface. So I was able to create special wrapper classes for my displayable data that needed special sorting. The wrapper class

Re: GWT apps suddenly working on Windows Vista machine

2009-06-09 Thread Sumit Chandel
Hi sb10, Running 'ant build' should create class files as well as the .nocache.js and .cache.html files in a WAR style output directory. Is this working for you? Running 'ant hosted' should bring up the hosted mode browser, and if you're running it from the existing samples, it should open a new

Re: Problem with Cookies in Firefox

2009-06-09 Thread David E.
Here is the code on the server that initially returns the sessionID. I don't think there is anything exotic here, but maybe I'm wrong? In the GWT docs it says that FormSubmitCompleteEvent.getResults() returns the HTML of the response. In IE this isn't including the pre/pre in Firefox it is.

Re: Problem with Cookies in Firefox

2009-06-09 Thread David E.
When I added: resp.setContentType(text/html; charset=ISO-8859-1); resp.getWriter().print(login.execute()); resp.flushBuffer(); it started working correctly, great call Todd, thanks, much appreciated. -David On Jun 9, 2:51 pm, David E. dve1...@gmail.com wrote: Here is the code on the

Reference Guide vs. Javadoc (1.6 vs. 1.5)

2009-06-09 Thread Paul
Hi, the links in the 1.6 Widget Gallery ( http://code.google.com/intl/de-DE/webtoolkit/doc/1.6/RefWidgetGallery.html ) point to the 1.5 Javadoc! Could someone fix that? Or did I miss something? Thanks a lot, Paul. --~--~-~--~~~---~--~~ You received this message

Re: Reference Guide vs. Javadoc (1.6 vs. 1.5)

2009-06-09 Thread Paul
and, btw, the link API Reference on the start page of this group also leads to a 404. On 9 Jun., 21:16, Paul paul.fuehr...@gmx.net wrote: Hi, the links in the 1.6 Widget Gallery (http://code.google.com/intl/de-DE/webtoolkit/doc/1.6/RefWidgetGallery... ) point to the 1.5 Javadoc! Could

Re: Very basic LoginSecurityFAQ and GWT-RPC questions

2009-06-09 Thread Chad
eags, In my apps, I generally keep a reference to the User object within the app. Since, my current app works with browser history and can be called with various urls, I check for the existence of a User object after I parse the url, but before I load and show the content referenced by the url.

MouseOverHandler FlexTable's cell

2009-06-09 Thread Kelo
I'm migrating my library to new event's model. I would like to know row and col of a FlexTable's cell by using MouseOverHandler, something similar to getCellForEvent(ClickEvent event) with ClickHandler. Can anyone help me ? --~--~-~--~~~---~--~~ You received this

Another 1.6 event handler question

2009-06-09 Thread dk
Hi, In pre-1.6 I could implement ClickListener and then in my code... Button foo = new Button(); foo.addClickListener(this); ... etc I know that in 1.6 I implement ClickHandler and then ... foo.addClickHandler(this); ... My question today is about creating the onClick method. Before I could

Re: Another 1.6 event handler question

2009-06-09 Thread Paul
event.getSource() On 9 Jun., 22:11, dk dean.kar...@gmail.com wrote: Hi, In pre-1.6 I could implement ClickListener and then in my code... Button foo = new Button(); foo.addClickListener(this); ... etc I know that in 1.6 I implement ClickHandler and then ...

Re: Alternative (not monolithic) i18n builds?

2009-06-09 Thread Freller
You can use the Dictionary class but then you need to create a HTML for each locale. http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/i18n/client/Dictionary.html Regards, Freller Is there a work around to avoid monolithic compilations per browser AND per locale? In

Confusion over DHTML vs widgets and composites

2009-06-09 Thread arcy
In the Developer's Guide under Building User Interfaces / Cross- Browser Support, we have the following paragraph: GWT shields you from worrying too much about cross-browser incompatibilities. If you stick to built-in widgets and composites, your applications will work similarly on the most

Re: MouseOverHandler FlexTable's cell

2009-06-09 Thread Kelo
I figured this out by using Element td = getEventTargetCell(Event.as (event.getNativeEvent())); on onMouseOver. On 9 jun, 16:24, Kelo mcac...@gmail.com wrote: I'm migrating my library to new event's model. I would like to know row and col of a FlexTable's cell by using MouseOverHandler,

Re: Another 1.6 event handler question

2009-06-09 Thread Dean Karres
Thank you. On Tue, Jun 9, 2009 at 3:17 PM, Paulpaul.fuehr...@gmx.net wrote: event.getSource() --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

function reference

2009-06-09 Thread kevin.d...@googlemail.com
hello, I search a solution for save a function/method reference for a later callback? par example in javascript: var method = methodname; method.call (); // callback in pure java I use thejava.lang.reflect.Method class. how can I realize this in GWT? greets Kevin

Re: function reference

2009-06-09 Thread Paul Grenyer
Looks like an ideal place for an interface to me. Sent from my Archimedes A3000 -Original Message- From: kevin.d...@googlemail.com kevin.d...@googlemail.com Date: Tue, 9 Jun 2009 12:46:52 To: Google Web ToolkitGoogle-Web-Toolkit@googlegroups.com Subject: function reference hello, I

GWT version of span

2009-06-09 Thread Paul
Hi, I need to display a set of text elements (each with a separate click handler etc) one after another. I use a FlowPanel and thought the usage of Label for the text elements would be a good idea. But it is not. Label renders itself as div (as described in the Javadoc). Is there any way to

Re: function reference

2009-06-09 Thread kevin.d...@googlemail.com
hello, thanks for your answer, but I search a dynamic solutions for safe produce boiler code for listener (new AsyncCallback ..) On 9 Jun., 22:45, Paul Grenyer paul.gren...@gmail.com wrote: Looks like an ideal place for an interface to me. Sent from my Archimedes A3000 -Original

Help with EventHandlers

2009-06-09 Thread Iván López
Hi all!, I've a little problem upgrading my code from 1.5.3 to 1.6.4. I've an AccountManager class that manages the accounts and when a change is done it fires an event to all the components to update its list of accounts. AccountManager: private ChangeListenerCollection changeListeners;

Re: GWT version of span

2009-06-09 Thread Brad L
Make your own InlinePanel that extends FlowPanel and overrides the default constructor, calling setElement(DOM.createSpan())) instead. Brad On Jun 9, 5:00 pm, Paul paul.fuehr...@gmx.net wrote: Any ideas? Thanks a lot, Paul. --~--~-~--~~~---~--~~ You received

Re: data binding

2009-06-09 Thread Arthur Kalmenson
We're actually using the GWT Beans Binding library and it seems to work. http://code.google.com/p/gwt-beans-binding/ The GWT team is suppose to come out with a solution for this sometime in the future. -- Arthur Kalmenson On Fri, May 29, 2009 at 11:28 AM, abbymisra.a...@gmail.com wrote:

Re: Facebook-like AJAX using GWT

2009-06-09 Thread Arthur Kalmenson
I'm not sure I follow. Using History, you should be able to achieve exactly what you're aiming for. One thing to keep in mind is to fire the current history item in your entry point (or somewhere at application startup). From there your history management can take over for the item available.

Left Menu on this group!

2009-06-09 Thread iainmackay85
Could someone please fix the left menu on this group that currently obscures the left side. Poor!! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Changing GWTs hosted mode browser.

2009-06-09 Thread Axel Kittenberger
Dear GWT community, Is there a (relative easy way) to replace the GWTs hosted mode browser for linux systems? The provided Mozilla 1.7.2 is a 5 year old thing anyway. In particular I need EXSLT for regexps in XSLT (I'm calling native javascript to perform clientside XSLTs) it works fine in

GWT Compiler Question

2009-06-09 Thread lineman78
Is there any way to tell the compiler not to put the files in a folder named after the package name. i.e., if my module is com.google.test.TestApp and I compile with -war www, it puts all the files under ./www/com.google.test.TestApp. I was wondering if there is a way to get it to just put all

Re: GWT version of span

2009-06-09 Thread Thomas Broyer
On 9 juin, 23:00, Paul paul.fuehr...@gmx.net wrote: Hi, I need to display a set of text elements (each with a separate click handler etc) one after another. I use a FlowPanel and thought the usage of Label for the text elements would be a good idea. But it is not. Label renders itself as

Re: Apache JNDI dbcp connection pool working w/ GWT 1.6 and Oracle

2009-06-09 Thread barclayal...@gmail.com
How do you add jetty-plus-6.1.11.jar and jetty-naming-6.1.11.jar to class path so that stand alone jetty can see it? I keep getting: [WARN] Config error at New id=website class=org.mortbay.jetty.plus.naming.Resource java.lang.ClassNotFoundException: org.mortbay.jetty.plus.naming.Resource On

Re: Changing GWTs hosted mode browser.

2009-06-09 Thread Jason Essington
search for OOPHM on this list -jason On Jun 9, 2009, at 4:10 PM, Axel Kittenberger wrote: Dear GWT community, Is there a (relative easy way) to replace the GWTs hosted mode browser for linux systems? The provided Mozilla 1.7.2 is a 5 year old thing anyway. In particular I need EXSLT for

Re: Help with EventHandlers

2009-06-09 Thread Kelo
Acá va un poco de luz ( here's a little bit of light ). public class AccountManager extends Composite implements HasValueChangeHandlersInteger { public AccountManager() { .. .. .. .. initWidget(bar);

Re: Left Menu on this group!

2009-06-09 Thread Ian Bambury
What *are* you on about? Still, it's one way to introduce yourself to the group :-) Plonk! Ian http://examples.roughian.com 2009/6/9 iainmackay85 iainmacka...@googlemail.com Could someone please fix the left menu on this group that currently obscures the left side. Poor!!

GWT+Gmaps Unable to load Google Map [no error]

2009-06-09 Thread G
I am fairly new to GWT + Google Maps toolkit. I am using eclipse pulgin on windows and was able to successfully compile and deploy ExampleWebApp on Google AppEngine Tomcat. I am now struggling to get the SimpleMaps example working. I have 1.6.4 plugin gwt-maps-1.0.4. I am not getting any

Re: GWT+Gmaps Unable to load Google Map [no error]

2009-06-09 Thread Eric Ayers
Hello G, I looked over your files and didn't see anything obvious. Unfortunately, the maps documents haven't been updated for GWT 1.6 or the Google Plugin. Here are some suggestions: 1) Did you try using hosted mode and setting a break point in your EntryPoint class? 2) You also could try

Scriptaculous appear effect with PNG with transparency shows black background on IE

2009-06-09 Thread mrpantsuit
I'm actually using the GWT Widget Library's Effect class, which has an Effect.appear(Widget) method. On IE, When the widget is an Image that's a PNG with transparency, while the effect is animating the background of the image shows black. The same applies for other transparency effects, e.g.,

Re: GWT+Gmaps Unable to load Google Map [no error]

2009-06-09 Thread G
I tried changing the following line in SimpleMap.java and to my surprise, and it compiled. RootPanel.get(mapsSSSTutorial).add(map); I am using the GWT Compile Project button on eclipse toolbar. Output of compilation: Compiling module com.google.gwt.maps.GoogleMaps.SimpleMaps Compiling 5

Re: GWT+Gmaps Unable to load Google Map [no error]

2009-06-09 Thread G
I tried changing the following line in SimpleMap.java and to my surprise, and it compiled. RootPanel.get(mapsSSSTutorial).add(map); I am using the GWT Compile Project button on eclipse toolbar. Output of compilation: Compiling module com.google.gwt.maps.GoogleMaps.SimpleMaps Compiling 5

Re: GWT+Gmaps Unable to load Google Map [no error]

2009-06-09 Thread Eric Ayers
The change you made compiles because the lookup of the argument to RootPanel.get() is done at runtime. If you are new to GWT, have you run through the general GWT tutorial? It shows how to use the Java Debugger with Hosted mode. On Tue, Jun 9, 2009 at 10:34 PM, Ggaur...@gmail.com wrote: I

in IE6, DatePicker could not AutoHide in maps InfoWindow

2009-06-09 Thread Tail
Hi all, I use gwt-maps1.04,I have a form and there is some fields in the form (like TextBox,TextArea,DateBox), the form is in maps InfoWindow (map.getInfoWindow()), when I click the DateBox , the DatePicker is show,but I go on fill other Fields , the DatePicker could not auto hide in IE6,the

[DEBUG] Invoking generate-with class='com.google.gwt.i18n.rebind.LocalizableGenerator'/

2009-06-09 Thread derock
[ERROR] Could not parse specified locale com.google.gwt.core.ext.BadPropertyValueException: Property 'locale' cannot be set to unexpected value 'null' at com.google.gwt.dev.shell.ModuleSpacePropertyOracle.computePropertyValue (ModuleSpacePropertyOracle.java:114) at

Re: GWT+Gmaps Unable to load Google Map [no error]

2009-06-09 Thread G
Eric, I will go through the GWT debugging tutorial. thanks But what I dont understand is I dont get any errors at all. What would be nice is to have an example of Googlemaps + GWT (version 1.6.4)...hope that can be published shortly... I want to write a fairly complex system using this and I

Can't enable get Jetty Plus feature

2009-06-09 Thread barclay allen
How do you add jetty-plus-6.1.11.jar and jetty-naming-6.1.11.jar to class path so that stand alone jetty can see it? It runs in Hosted Mode but not in stand alone Jetty. I have jetty-plus-6.1.11.jar and jetty-naming-6.1.11.jar in WEB-INF/ lib. I keep getting: [WARN] Config error at New

[gwt-contrib] Moving PagingScrollTable Friends to Trunk

2009-06-09 Thread jay
As I see that this has begun (yeah), I'd like to throw out a few requests: * Please, please, please -- ensure that this is as extensible as possible. Here's just one example--I've integrated the gwt-dnd library to allow drag-n-drop re-ordering of columns. There are a couple of funny corner

[gwt-contrib] Re: Moving PagingScrollTable Friends to Trunk

2009-06-09 Thread David
Jay, We are experiencing the same ideas here. We store column ordering and widths on the server but we have no way of getting events in the UI to know when changes have been complete. wouldn't it be nice that the dnd was included as well, I could really use the DND of columns! Was it hard to

[gwt-contrib] Re: More if-statement optimizations in JsStaticEval

2009-06-09 Thread Ray Cromwell
This brings up the issue of whether or not there isn't someway to abstract some of these optimizations on the ASTs so that they can be shared by the Java and JS optimizers. I made patch along the same lines to the simplifier mirroring the Java simplifier. It seems like a lot of optimizations are

[gwt-contrib] Re: Changing JsArrayT extends JavaScriptObject to JsArrayT

2009-06-09 Thread Stefan Haustein
On Tue, Jun 9, 2009 at 1:02 AM, Ray Cromwell cromwell...@gmail.com wrote: In particular, I use my own JsArray/JsMap implementation to avoid JRE collections in GQuery. Perhaps rather than patching JsArray, there should just be something like FastArrayList and FastMap which do not implement

[gwt-contrib] Re: Moving PagingScrollTable Friends to Trunk

2009-06-09 Thread John LaBanca
We'll definitely keep these things in mind when moving stuff over to GWT trunk. We've also found a lot of general usability problems, such as the fact the the table doesn't layout naturally, which means apps require active layout. During the transfer, we'll refactor quite a few things to make

  1   2   >