Re: Developer plug-in hangs

2010-05-12 Thread Charan
Hi, Found issue for AttachDetachException. Actually i was overridden the onLoad method in which i was calling center(), inside PopupPanel.center is calling show() which in turns calls again my onLoad() overriden method which goes to Infinite loop finally causes the AttachDetachException.

Dynamic tab content load in TabLayoutPanel

2010-05-12 Thread Toni
Hi there! I have a regular TabLayoutPanel and I'm trying to make the content of each tab load dynamically when the user clicks on a particular tab. I tried using a SelectionHandler with no luck, for tab content can't be modified (or that's what I found out so far) and removing/adding a tab is not

OOPHM too slow

2010-05-12 Thread Blessed Geek
I was using ubuntu 9.10 on dual core pentium D 2.8 GHz 2GB 667 MHz DDR2. I have three GWT modules on GAE development server. Whenever I launch an initial oophm, Firefox freezes for 5 mins and the system runs at 2x100%. And the cooling fans go crazy and loud. OK, no prob'm. I replaced my

Re: OOPHM too slow

2010-05-12 Thread Blessed Geek
addendum - it should have been: I replaced my workstation with core core 2 quad ... -- 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-tool...@googlegroups.com. To unsubscribe from this group,

Resource URL rewriting (e.g. cache.html)

2010-05-12 Thread Stefan Ludwig
Hi, does anyone knows, how the creation of the resource url in the created GWT JavaScript works? I use GWT in a portal environment (JSR-168) so i have to rewrite/change all URLs from where the resources are loaded and RPC calls goes (e.g. chache.html, images and RPCs URLs). The resources should

Re: Adding cookie question

2010-05-12 Thread Ho Jimmy
2010/5/7 Sripathi Krishnan sripathikrish...@gmail.com Both are identical, just different ways of doing it ... ..BUT, you almost always set the session cookie on the server. The session cookie has a random, impossible to guess identifier. This identifier must only be set on the server side,

ListView with Text and images?

2010-05-12 Thread sridevi macherla
Hi, How to add listView with Text and images? which has liststore... somone please help me. Thanks Sri -- 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-tool...@googlegroups.com. To

Re: GWT 1.7 to 2.0 upgrading problem: no longer working: GWTCanvas, gwt-diagrams2

2010-05-12 Thread Navigateur
Dear kozura, after some testing, some essential mouseovers and mouseclicks stop happening in Firefox quirks mode, while they all happen fine in standards mode (despite gwt-diagrams2 and GWTCanvas not working in standards mode). Is this a known issue with an easy fix? Internet Explorer works as

Re: help for sending e-mail using rpc / gwt

2010-05-12 Thread abhiram wuntakal
Hey Felipe, Here is what you need to do: Client Side : SendEmail.java (Entrypoint or a Popup) - A very basic design would be of a TextArea / RichTextArea where you can have the body of the email written. Then you can provide a Send Button. On the click of the send button, create an object

Changing moduleBaseURL

2010-05-12 Thread Stefan Ludwig
Hi, is there a way to change te moduleBaseURL? Thanks and regards Stefan -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email

Re: piriti xml mapping

2010-05-12 Thread Fahim
Hi Harald, Thanks for your response. Yes I have XmlReader in PackageContent too like this; public interface PackageContentReader extends XmlReaderPackageContent {} public static final PackageContentReader XML = GWT.create(PackageContentReader.class); I will also make sure that

Exchange datas between modules

2010-05-12 Thread Stefan Ludwig
Hi, how I can exchange datas between two GWT modules? I there a way? Or/ and how can I dispatch an event in another module (like button click)? Thanks Stefan -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: Changing moduleBaseURL

2010-05-12 Thread Thomas Broyer
On 12 mai, 14:24, Stefan Ludwig tapir0...@gmail.com wrote: Hi, is there a way to change te moduleBaseURL? Add a rename-to= to your *.gwt.xml ? Why do you want to change the moduleBaseURL ? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Joseph Favara/HQ/Corp/OAI is out of the office.

2010-05-12 Thread Joseph . Favara
I will be out of the office starting 05/12/2010 and will not return until 05/19/2010. I will respond to your message when I return. If this is urgnet please contact Paul Frasceschini at 105628 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: Widget from DOM element

2010-05-12 Thread Thomas Broyer
On 12 mai, 03:21, lineman78 linema...@gmail.com wrote: I have had difficulty finding this and figure it must be something stupid I can't find, but how do you create a widget from an element already in the DOM so you can get eventing, Some widgets have a wrap() static method for this. or

Re: Running gwt app with custom context root

2010-05-12 Thread Antonio
The problem is: I have some pages with css and images who are linked eg: /myapp/images/image.jpg, but running under GWT plugin the path to same image is /images/image.jpg. Under production I can't run the application in root directory from the server. On 9 maio, 02:56, Manuel Carrasco Moñino

Re: Exchange datas between modules

2010-05-12 Thread Stefan Bachert
Hallo, what about? package module1 method1 (Data data) { module2.class2.method2 (data); } when you consider a more complex case, you need to explain what you are going to do?. Stefan Bachert http://gwtworld.de On 12 Mai, 08:43, Stefan Ludwig tapir0...@gmail.com wrote: Hi, how I can

Re: Dynamic tab content load in TabLayoutPanel

2010-05-12 Thread Toni
Hey, I just coded a custom widget that does the trick. Thanks anyway! On May 12, 8:55 am, Toni tonin...@gmail.com wrote: Hi there! I have a regular TabLayoutPanel and I'm trying to make the content of each tab load dynamically when the user clicks on a particular tab. I tried using a

Re: Changing moduleBaseURL

2010-05-12 Thread Stefan Bachert
Hi, You may use rename-to ?xml version=1.0 encoding=UTF-8? module rename-to='showcasewithdecor' inherits name=a1.decor.GwtCore/ Stefan Bachert http://gwtworld.de On 12 Mai, 14:24, Stefan Ludwig tapir0...@gmail.com wrote: Hi, is there a way to change te moduleBaseURL? Thanks and regards

Re: Running gwt app with custom context root

2010-05-12 Thread Antonio
The problem was solved and solution is very simple, since gwt plugin uses jetty as web container just put jetty-web.xml in the WEB-INF folder. This file specifies the context root of application. Content of jetty-web.xml: ?xml version=1.0 encoding=UTF-8? !DOCTYPE Configure PUBLIC -//Mort Bay

Re: Exchange datas between modules

2010-05-12 Thread djd
No easy way to do this, One way is to use JSNI, write to DOM in one module, read in the 2nd. The problem here is serialization of these 2 events (read write) - meaning u should be sure the data was actually written before reading them. Another way is to set a callback to DOM that listens to data

Re: piriti xml mapping

2010-05-12 Thread Harald Pehl
Hi Fahim, Since Piriti is developed on ubuntu I didn't test it on IE. I'm using the module com.google.gwt.xml.XML for the XML parsing. actually this should work with IE. As soon as I find the time I will test the XML parsing in IE. - Harald On 12 Mai, 14:27, Fahim fahimr...@gmail.com wrote: Hi

Re: Resource URL rewriting (e.g. cache.html)

2010-05-12 Thread Stefan Bachert
Hi Stefan, you are going to mix classical web technology and ajax-based. This does not really match. This is as useful as to put wings to your car. After doing so your car neither flies nor drives (not sure whether this is comprehensive in english, Das was Sie versuchen ist so sinnvoll wie Flügel

Re: Exchange datas between modules

2010-05-12 Thread harjit.singh
Think about it this way. Modules are nothing but single HTML pages. If one were to pass data between different HTML pages how would one do it. I have used Session and or Cookies for it. Again my dataset was very small. There are limitations on how much data you can store in a cookie. Other

Re: Exchange datas between modules

2010-05-12 Thread lineman78
See GWT Exporter. This allows you to inject unobfuscated javascript functions so you can call them through JSNI from the other module. If you don't want to include exporter, all you have to do is inject the functions through JSNI on module load. DISCLAIMER: this is untested, you might have to

Re: Resource URL rewriting (e.g. cache.html)

2010-05-12 Thread Alan Chaney
Hi Stefan and Stefan Stefan Bachert wrote: SSO is an other topic. SSO depends in general from being able to redirect page. This does not work with AJAX-driven apps, at least not out of the box. I would have thought that the correct way to handle SSO is a servlet filter in the web

Re: GWT 1.7 to 2.0 upgrading problem: no longer working: GWTCanvas, gwt-diagrams2

2010-05-12 Thread kozura
I don't know of any issue with continuing to use quirks mode in GWT2, I didn't convert my apps to standards mode when I upgraded and everything continued to work fine, including many mouse handlers. As for GWTCanvas, probably should ask on their board. Regarding the selection/cursor API, I was

fireEvent

2010-05-12 Thread Thomas Holmes
I realize this is a group for GWT and not any derivatives of such ... but this question may fit. I am using SmartGWT 2.x and I have some code that looks like this: final IButton refreshButton = new IButton(Refresh); refreshButton.setWidth(80);

Re: java.lang.NoClassDefFoundError, it probably well known but I cannot found the solution....

2010-05-12 Thread Carfield Yim
Interesting, why GAE do so? My application opening a file, basically it is just a better looking webserver. However, it doesn't look like inheritance from servlet security restriction... Is there more document mention why GAE do that? On May 12, 2:14 am, Sripathi Krishnan

Re: java.lang.NoClassDefFoundError, it probably well known but I cannot found the solution....

2010-05-12 Thread Sripathi Krishnan
Why does GAE do so? Scalability, Resource Utilization and Security. GAE is a hosted service that google provides. One of the ways in which they scale is preventing writes to the file system. Because you don't write to the file system, if a machine goes down your application doesn't lose

Maven + compileReport

2010-05-12 Thread guigui
I use Maven 2, and I want to use the option compileReport. But I don't know how to execute with Maven. Can you help me ? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Development mode - changes not being picked up

2010-05-12 Thread Willis
Hi All, I've just finished successfully migrating my GWT1.6 project to GWT2.0.3. At the same time, I migrated from Netbeans 6.5 to Netbeans 6.8. I use Glassfish v2, and the project is a J2EE project as I use a EJB persistence layer in the backend. I have installed the GWT4NB plugin into Netbeans

Re: PHP servlet in memory database

2010-05-12 Thread Mark Marijnissen
start_session(); //to be called once, to load the $_SESSION variables. $array = IsSet($_SESSION['array'])? $_SESSION['array']: createArray(); //load array from session if there is any, otherwise create a new array function createArray() { return array('1','2'); } On May 10, 11:50 am, خليل

Hidden FileUpload Widget

2010-05-12 Thread kratzbaumkordel
Hi, I'm wondering if it is possible to hide the GWT UploadWidget (or not use it at all) and instead open the file chooser in a different way instead of clicking on Browse. I would like the file choose dialog to pop up when I click on a certain panel and then upload the chosen file to the server.

.cache.html file size

2010-05-12 Thread Jewel
Hi, We are developing a small application using gwt 1.7.1. The GWT compiler is generating .chache.html file for 6 permutation each one having size around 1 mega bytes. Wen we upgraded the gwt version to 2.0.3 suddenly we observed that the size of the .cache.html file got increased to 2 mega bytes

net.sf.gilead.pojo.java5.LightEntity - inherit a required module

2010-05-12 Thread egpme
2010-05-09 15:43:24 CEST Hello, I use : GWT 2.0.3 gilead4gwt 1.3.1.1665 I have this error when i run my application : 15:34:22.999 [ERROR] [musicstore] Errors in 'file:/C:/Users/ xavier.BOREALINFORMATI/workspaceGWT/musicstore/src/com/google/ musicstore/domain/Record.java' 15:34:23.015 [ERROR]

Re: Jasper Help

2010-05-12 Thread bhargava
How to disable GAE on netbeans! Thanks On May 8, 6:26 am, Sripathi Krishnan sripathi.krish...@gmail.com wrote: Without the stacktrace or error message, I'd say you are have Google App Engine enabled. GAE does not allow you to use databases or open socket connections. Try disabling GAE, its a

Image not visible in chrome and IE 8 but working fine in firefox.

2010-05-12 Thread Rahul
I have added some images to the page which are rendered by gwt. The images are displayed correctly in firefox but nothing comes up in chrome and a java script error comes up IE 8. What can be the possible cause for the same ? Thanks -- You received this message because you are subscribed to

RCPService or RemoteService

2010-05-12 Thread lpetit
Hello, A french book on GWT 2 told me to use RPCService + RPCServlet for new projects (it does not even explain the use of RemoteService, etc.). But when I look at the javadoc of those classes in gwt 2.0.3, I see big warnings: EXPERIMENTAL , DO NOT USE IN PRODUCTION. What to think about it ?

GWT and telnet connections

2010-05-12 Thread Łukasz P .
Hello, I wonder is it possible to make an application in GWT that could use telnet connections? Simply I need to send some commands via telnet to a server and show the responses in a window. I know it is possible in Java, but is it possible in GWT? -- You received this message because you are

DialogBox opens an DialogBox

2010-05-12 Thread Animatrix
Hello ! I have a DialogBox with : - Label(s) - TextBox(es) - A Button OK If something is wrong with one of the TextBox(es), I open an other dialogbox explaining the problem. Then I setVisible(false) the other DialogBox. But after the focus is nowhere. I am trying to click on the

Development Mode requires the Google Web Toolkit Developer Plugin

2010-05-12 Thread Magnus
Hi, when trying to run my first web app project, I get this message with all my browsers. I upgraded my system Debian Etch to the current version, Debian Lenny. This raised my version of firefox to Iceweasel 3.0.6. The GWT Developer Plugin was installed several times, but I still get the message

gwitbus - The GWT Event Bus for non-GWT projects

2010-05-12 Thread dan twining
Hello everyone, I just wanted to let people know about gwitbus ( http://gwitbus.googlecode.com). It's a stand-alone repackaging of the com. google.gwt.event.shared classes, so that Java programmers can reuse the HandlerManager (a.k.a Event Bus) in their non-GWT projects. We've used it for a

Is there a reason why CheckBox doesn't have a static wrap

2010-05-12 Thread rayh001
Is there a reason why CheckBox doesn't have a static wrap, just like it's brethren widgets (ListBox, Label...etc)? -- 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-tool...@googlegroups.com. To

Re: GWT and annotations from JAXB

2010-05-12 Thread ciosbel
I've the same problem. I've followed your instructions and almost everything has been fixed. Except for these errors: [ERROR] Line 36: No source code is available for type javax.xml.namespace.QName; did you forget to inherit a required module? [ERROR] Line 198: No source code is available for

Running GWT with -noserver and weblogic. Can anyone help?

2010-05-12 Thread arkady
Hey folks, I have a weblogic server running with my application, something I deploy and launch outside of eclipse. It is running on localhost:7001/myApp Inside Eclipse, I would like to launch the GWT component such that I can debug the client side code AND see immediate changes without the need

FileUpload control behavior on IE and Firefox

2010-05-12 Thread SandeepGoel
Hi, I have FileUpload control in my application. If I run my application and enter an invalid string (like abcd) in the fileupload text box then my application goes in hang state and call does not go to the server. Question1: Can I validate the input to the actual and correct file on the client

How could I get TimeLine functionality from SpeedTrace application ?

2010-05-12 Thread eghodbane
Hello, I'm trying to develop an application which will based on TimeLine functionality using GWT2. I followed all SmartGWT showcases but I can't find any feature or widget that can be appropriate to my needs (having scrollable band which can be make zoom on a such period). In my documentation, I

Help: Cannot connect to virtula machine

2010-05-12 Thread Raluca Moraru
Hello all, I just started working with GWT and took the first tutorial project to test it. I run it locally with Debug as web application. The first time worked fine. Second time, after restarting eclipse as well I get the error Cannot connect to virtual machine when I try to run the project from

How do you handle threading issues in development mode?

2010-05-12 Thread José González Gómez
Hi there, In my GWT application I have a shared list with modification events that are later sent to the server side of my application: a modification event is added to the list (almost) every time there is a change in any of the fields of my application, and then I have a timer that reads events

UiBinder template files, Eclipse and Maven

2010-05-12 Thread José González Gómez
hi there, The Google Plugin for Eclipse seems to force you to put the UiBinder template files in the same directory as the corresponding UiBinder interface. I'm using maven, that uses a separate directory for resources (src/main/resources) to keep them separated from java classes (src/main/java).

GWT HTTP form post

2010-05-12 Thread heyyo
Hi, I created a form panel, I can upload file and I want to send a hidden field also via HTTP request. My file upload parses the request and succesffully uploads. How can I parse http request for my hidden field in the same class on the server side? //UPLOAD CODE FileItemFactory factory = new

How could I get TimeLine functionality from SpeedTrace application ?

2010-05-12 Thread Esslem GHODBANE
Hello, I'm trying to develop an application which will based on TimeLine functionality using GWT2. I followed all SmartGWT showcases but I can't find any feature or widget that can be appropriate to my needs (having scrollable band which can be make zoom on a such period). In my documentation, I

BaseTreeModel - Unable to display a tree !

2010-05-12 Thread Oliver
I try to display a tree with BaseTreeModel == In my entry point : RootPanel.get().add(new TreeTestModel()); == My TreeTestModel : public class TreeTestModel extends LayoutContainer {

Re: log4j:WARN No appenders could be found for logger

2010-05-12 Thread aditya sanas
hi, include tht jar file using java build path and problem will be solved. -- Aditya On Tue, May 11, 2010 at 1:31 PM, fomba collins fomba_coll...@yahoo.comwrote: Hi, I believe this error means that the log4j.properties is not seen in the class path. Please can someone help me

GWT 2.0 integration with Spring Security 3.0

2010-05-12 Thread sylvain.saurel
Hello, I used GWT 2.0 since a few days. So, I try to code an basic application with a login form and a page accessible only if i am logged. Usually in my web application with jsf for example, I use Spring Security 3.0 to configure and secure that kind of application. So, I decided to try to do

Re: Developer plug-in hangs

2010-05-12 Thread Chatak
Have you tried compiling that code ? does it compiled successfully? Regards, Aditya On May 11, 11:29 am, Charan s.chara...@gmail.com wrote: Hi, I was trying some code in GWT 2.0.3 with DialogBox and panels, dialog box is not showing which is throwing the AttachDetachException in FF firebug.

Re: Can we check uploaded file Size at client side in GWT by Reading the header info of the file

2010-05-12 Thread Jérémie
You can use HTML5 File API through JSNI https://developer.mozilla.org/en/Using_files_from_web_applications However it's a new feature and few browsers support it... On May 11, 1:18 pm, GWT Groups new.ankitj...@gmail.com wrote: Hello Friends I required your views.. Can we check

GWT Menu auto hide feature

2010-05-12 Thread ivanavde...@gmail.com
It would be very nice to have auto hide feature for GWT MenuBar, MenuItem implementation. -- 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-tool...@googlegroups.com. To unsubscribe from this

Compile error: The type XXX is already defined

2010-05-12 Thread Mark Marijnissen
Everything is working fine in development mode, both debugging and just running. I am using Eclipse with GWT 2.x, and all of a sudden I get this error: Compiling module com.mystuff.Projectx [ERROR] Errors in 'file:/D:/webdev/xampplite/htdocs/projectx/src/ com/mystuff/client/API.java'

Chinese support in DatePicker

2010-05-12 Thread John
I have create a DatePicker and want to show the DatePick in Chinse. For example, the Jan in the DatePicker should be show in Chinese. I know there is some intenational support in GWT but I don't know how to change the words in the DatePicker because it is controled by the widget itself. Can anyone

FileUpload problem on IE

2010-05-12 Thread SandeepGoel
Hi everybody, In my application I have FileUpload control, it works fine on firefox as user can not enter input into the text box and user have to select the file from the system. But on IE if user enter any wrong test (Like abc xyz) then it goes hang as there is no such file. Can I block user to

Exiting GWT program, ending process

2010-05-12 Thread Martin
I wrote a program meant to serve as a customized form for a google spreadsheet. It's a a fairly standard Web Application project: a client-side class handles form i/o through the html. Collected information is sent to the server-side class through RPC, and the server uses the GData API to locate

How to call external module into GWT application

2010-05-12 Thread eghodbane
Hello, I tried to enable communication between my GWT application (gadget) and his container GateIn (~ eXo Social). I'd like to manage import into my application in order to use services forwarded by GateIn (~ eXo Social), so I added dependency into my pom file like this: !-- Dependencies

CodeSplit : Out of Memory

2010-05-12 Thread Swathi
hi when i try to do code splitting I keep getting java out of memory exception and not all permutations get compiled. I have tried to increase the heap memory size to 1G but still it doesn't resolve the problem. May i know how I should go about this? swathi -- You received this message

GWT, SmartGWT, Google Visualization Help

2010-05-12 Thread Matt
I'm trying to draw a Google Column Chart into SmartGWT draggable window. I can draw the chart correctly. I can draw the window correctly. I am just having trouble drawing the chart into the window. Does anyone have any examples or tutorials of doing this? Thanks! -m -- You received this

Want to run GWT app on mobile browser except android and iPhone

2010-05-12 Thread abhijeet
1. I have GWT App developed for Desktop app , it is pretty complex application, but managed and structured one. 2. Now I want to run same on Mobile browsers a. I am not able to run app on Mobile Internet explorer. b. I am able to run it on Safari/413 on symbian mobile.

gwt maps API and earth enterprise server

2010-05-12 Thread BrianV
So I have a gwt application that uses the gwt-maps APIs. We have a pressing need to use an Enterprise Earth server instead of the the Google server (maps.google.com) in the sky. Is there something special I need to do to connect it to this soon to be deployed Enterprise Earth server besides

Documentation Comments

2010-05-12 Thread Robert Goodfliesh
I apologize in advance ifh this is too trivial - or if I am wrong - but there appears to be some errors in the documentation pages. For example, in this discussion of communication between Java and Java Script: // Read instance field on this var val =

GWT Overengineered

2010-05-12 Thread rupy
Can you take a look at this wiki entry and comment it: http://code.google.com/p/rupy/wiki/GWT I think that a least common denominator* development strategy and hacking javascript, HTML and Java (HJJ) is a better way to go. What is it that GWT can leverage quicker than a good HJJ programmer.

Re: gwt maps API and earth enterprise server

2010-05-12 Thread Eric Ayers
I'm guessing that you won't be able to use the latest version of the gwt-maps API. Last I checked, only gwt-maps-1.0.3 was compatible with Enterprise Earth server. This has to do with the version of the maps API shipped in Enterprise Earth. On Tue, May 11, 2010 at 6:03 PM, BrianV

Re: piriti xml mapping

2010-05-12 Thread Fahim
Thanks Harald. Please let me know whenever you test it with IE8. I really need to make it work with IE. Fahim On May 12, 7:39 pm, Harald Pehl harald.p...@googlemail.com wrote: Hi Fahim, Since Piriti is developed on ubuntu I didn't test it on IE. I'm using the module com.google.gwt.xml.XML

Re: RCPService or RemoteService

2010-05-12 Thread Sripathi Krishnan
See http://code.google.com/webtoolkit/doc/latest/DevGuideServerCommunication.html#DevGuideDeRPC They won't be removed, but not many people have used it so far. If it works for you, stick with it. If you do find a bug later (rare, I'd say), its trivial to change to the older interfaces. --Sri

Re: Development mode - changes not being picked up

2010-05-12 Thread Sripathi Krishnan
When you hit your website, do you pass the gwt.codesvr=127.0.0.1:9997parameter in the URL? If you don't pass that parameter, the browser will execute the compiled JS code, which isn't what you want. --Sri On 9 May 2010 11:48, Willis jameswillisweak...@gmail.com wrote: Hi All, I've just

Re: Running GWT with -noserver and weblogic. Can anyone help?

2010-05-12 Thread Sripathi Krishnan
Your startup url should have the url parameter gwt.codesvr=127.0.0.1:9997. Thats the magic parameter that kicks in the GWT browser plugin which in turn evaluates java byte code. --Sri On 12 May 2010 01:43, arkady arkad...@gmail.com wrote: Hey folks, I have a weblogic server running with my

Re: UiBinder template files, Eclipse and Maven

2010-05-12 Thread Sripathi Krishnan
Could they be in a separate resources directory as long as they're included in the classpath and their packages match their corresponding UiBinder interfaces? Yes, it should work. Add your resources folder to source path in eclipse (instead of classpath as you currently have it). --Sri

Re: GWT 2.0 integration with Spring Security 3.0

2010-05-12 Thread Sripathi Krishnan
The problem is that /#login and #securepage are the same page as far as Spring is concerned. The part of the url after the # is not sent to the server, and so Spring never really sees it. I'd recommend creating the login page outside of GWT, as a simple html page. Then, protect your GWT page

Re: GWT and telnet connections

2010-05-12 Thread Ramon Buckland
Not from the browser no. You could do some weird stuff where the GWT client is just a front end for a server bound telnet session. On Sun, May 9, 2010 at 9:56 PM, Łukasz P. bufec...@gmail.com wrote: Hello, I wonder is it possible to make an application in GWT that could use telnet

Re: GWT, SmartGWT, Google Visualization Help

2010-05-12 Thread Matt
I've solved my problem but am wondering if anyone else is doing similar development.. On May 12, 2:10 pm, Matt ima...@gmail.com wrote: I'm trying to draw a Google Column Chart into SmartGWT draggable window.  I can draw the chart correctly.  I can draw the window correctly.  I am just having

Re: gwt maps API and earth enterprise server

2010-05-12 Thread BrianV
Thanks. How exactly do you get it to work with the earth server. In particular, how do I tell it from where to load the maps API script? I tried the following using an older version of the gwt-map api (1.0.2) with the following script statement in my *.gwt.xml: script

Re: DialogBox opens an DialogBox

2010-05-12 Thread kozura
Use dialog.hide() to get rid of the dialog. On May 8, 8:53 am, Animatrix animatri...@gmail.com wrote: Hello ! I have a DialogBox with : - Label(s) - TextBox(es) - A Button OK If something is wrong with one of the TextBox(es), I open an other dialogbox explaining the problem. Then I

Re: How do you handle threading issues in development mode?

2010-05-12 Thread kozura
It is not multi-threaded. Most iterators don't allow modification of the list (except iterator.remove()) while iterating over it, regardless of threading. Either make a separate list of additions and add it at the end, or iterate with an index and add items in a way that won't affect your

Re: FileUpload control behavior on IE and Firefox

2010-05-12 Thread Thomas Broyer
On 11 mai, 09:23, SandeepGoel sandeepmc...@gmail.com wrote: Hi, I have FileUpload control in my application. If I run my application and enter an invalid string (like abcd) in the fileupload text box then my application goes in hang state and call does not go to the server. Question1: Can

Re: Is there a reason why CheckBox doesn't have a static wrap

2010-05-12 Thread Thomas Broyer
On 11 mai, 14:31, rayh001 ray.hudai...@dominatechnologies.com wrote: Is there a reason why CheckBox doesn't have a static wrap, just like it's brethren widgets (ListBox, Label...etc)? CheckBox is made of a span wrapping an input type=checkbox and label for=..., and no GWT widget with DOM

[gwt-contrib] Added error-checking to SampleDataPopulator and updated the example in dataPopulator. (issue511801)

2010-05-12 Thread amitmanjhi
Reviewers: Ray Ryan, Description: Added error-checking to SampleDataPopulator and updated the example in dataPopulator. Patch by: amitmanjhi Review by: rjrjr (TBR) Please review this at http://gwt-code-reviews.appspot.com/511801/show Affected files: M trunk/bikeshed/scripts/dataPopulator

[gwt-contrib] Re: Added error-checking to SampleDataPopulator and updated the example in dataPopulator. (issue511801)

2010-05-12 Thread Ray Ryan
LGTM On Tue, May 11, 2010 at 11:06 PM, amitman...@google.com wrote: Reviewers: Ray Ryan, Description: Added error-checking to SampleDataPopulator and updated the example in dataPopulator. Patch by: amitmanjhi Review by: rjrjr (TBR) Please review this at

[gwt-contrib] Re: getValue returns null on unparsable value, and getValueOrThrow allows (issue510801)

2010-05-12 Thread rjrjr
http://gwt-code-reviews.appspot.com/510801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8101 committed - Added error-checking to SampleDataPopulator and updated the example in...

2010-05-12 Thread codesite-noreply
Revision: 8101 Author: amitman...@google.com Date: Tue May 11 20:06:57 2010 Log: Added error-checking to SampleDataPopulator and updated the example in dataPopulator. Patch by: amitmanjhi Review by: rjrjr (TBR) Review at http://gwt-code-reviews.appspot.com/511801

[gwt-contrib] [google-web-toolkit] r8102 committed - getValue returns null on unparsable value, and getValueOrThrow allows...

2010-05-12 Thread codesite-noreply
Revision: 8102 Author: rj...@google.com Date: Tue May 11 20:17:15 2010 Log: getValue returns null on unparsable value, and getValueOrThrow allows access to the ParseException Review at http://gwt-code-reviews.appspot.com/510801 Review by: cromwell...@google.com

[gwt-contrib] [google-web-toolkit] r8103 committed - Fix some missing dependencies so web mode compile will work

2010-05-12 Thread codesite-noreply
Revision: 8103 Author: rj...@google.com Date: Tue May 11 20:56:53 2010 Log: Fix some missing dependencies so web mode compile will work http://code.google.com/p/google-web-toolkit/source/detail?r=8103 Added: /branches/2.1/bikeshed/src/com/google/gwt/user/User.gwt.xml Modified:

[gwt-contrib] [google-web-toolkit] r8104 committed - Fix GAE deploy after gwtRequest change

2010-05-12 Thread codesite-noreply
Revision: 8104 Author: rj...@google.com Date: Tue May 11 21:32:44 2010 Log: Fix GAE deploy after gwtRequest change http://code.google.com/p/google-web-toolkit/source/detail?r=8104 Modified: /branches/2.1/bikeshed/war/WEB-INF/appengine-web.xml /branches/2.1/bikeshed/war/WEB-INF/web.xml

[gwt-contrib] The generated data was missing an Expense - Report link. Fixed it. Updated the sample Json data. (issue512801)

2010-05-12 Thread amitmanjhi
Reviewers: jgw, Description: The generated data was missing an Expense - Report link. Fixed it. Updated the sample Json data. Patch by: amitmanjhi Review by: jgw (tbr) Please review this at http://gwt-code-reviews.appspot.com/512801/show Affected files: M

[gwt-contrib] Re: The generated data was missing an Expense - Report link. Fixed it. Updated the sample Json data. (issue512801)

2010-05-12 Thread jgw
On 2010/05/12 14:53:32, amitmanjhi wrote: LGTM. http://gwt-code-reviews.appspot.com/512801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8105 committed - The generated data was missing an Expense - Report link. Fixed it. Up...

2010-05-12 Thread codesite-noreply
Revision: 8105 Author: amitman...@google.com Date: Wed May 12 04:54:10 2010 Log: The generated data was missing an Expense - Report link. Fixed it. Updated the sample Json data. Patch by: amitmanjhi Review by: jgw (tbr) Review at http://gwt-code-reviews.appspot.com/512801

[gwt-contrib] Configure the logging level to not show the warning by default. (issue495803)

2010-05-12 Thread amitmanjhi
Reviewers: Ray Ryan, Description: Configure the logging level to not show the warning by default. Patch by: amitmanjhi Review by: rjrjr (tbr) Please review this at http://gwt-code-reviews.appspot.com/495803/show Affected files: M trunk/bikeshed/scripts/dataPopulator Index:

[gwt-contrib] [google-web-toolkit] r8106 committed - Configure the logging level to not show the warning by default....

2010-05-12 Thread codesite-noreply
Revision: 8106 Author: amitman...@google.com Date: Wed May 12 05:43:10 2010 Log: Configure the logging level to not show the warning by default. Patch by: amitmanjhi Review by: rjrjr (tbr) Review at http://gwt-code-reviews.appspot.com/495803

[gwt-contrib] Adds remote_api support for the datastore bulk uploader to web.xml (issue513801)

2010-05-12 Thread zundel
Reviewers: rice_google.dom, rjrjr_google.dom, amitmanjhi, Description: Adds remote_api support for the datastore bulk uploader to web.xml Note that this change also requires that you add appengine-tools-api.jar to get the servlet class. Please review this at

[gwt-contrib] Updating Mobile expenses app now that prices are stored in dollars instead of cents. (issue514801)

2010-05-12 Thread jlabanca
Reviewers: jgw, Description: Updating Mobile expenses app now that prices are stored in dollars instead of cents. Please review this at http://gwt-code-reviews.appspot.com/514801/show Affected files: M /bikeshed/src/com/google/gwt/sample/expenses/gwt/client/ExpensesMobile.java M

[gwt-contrib] [google-web-toolkit] r8107 committed - Reverting tr...@7971: Re-rolling r7955: JUnitShell now subclasses Dev...

2010-05-12 Thread codesite-noreply
Revision: 8107 Author: sco...@google.com Date: Wed May 12 10:39:51 2010 Log: Reverting tr...@7971: Re-rolling r7955: JUnitShell now subclasses DevMode instead of GWTShell. Review by: fabbott (desk) http://code.google.com/p/google-web-toolkit/source/detail?r=8107 Deleted:

[gwt-contrib] Re: Updating Mobile expenses app now that prices are stored in dollars instead of cents. (issue514801)

2010-05-12 Thread jgw
On 2010/05/12 16:49:01, jlabanca wrote: LGTM http://gwt-code-reviews.appspot.com/514801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

  1   2   >