docs discrepancy ???

2009-06-19 Thread Robert Lehr
FYI, there appears to be a discrepancy in the docs w/rt to the doc type specifying "Transitional" denotes "Standards" mode or "Quirks" mode. Which does it denote ? Note the following from GWT docs. >From http://code.google.com/webtoolkit/tutorials/1.6/create.html - To provide better cr

GWT 1.6.4 - Blank page in Hosted Mode

2009-06-19 Thread Lupan
Hi ! I just downloaded the GWT 1.6.4 distribution and tried running some of the samples with the ant hosted command. Unfortunately only the static content is loaded in the hosted mode browser, as if there were no

Re: GWT project runs slow in Hosted mode

2009-06-19 Thread mgrouch
We have same issue and still can't resolve it. On relatively large application (overall about 20 tables and forms) with GWT 1.6 and GWT-EXT 2.0.6 hosted mode performance is really not adequate. Refresh of the page in hosted browser takes more than 30 seconds. Same application is quite responsive

Re: How to get tab Widget in a TabPanel?

2009-06-19 Thread Booth Martin
tabPanel.getWidget(1) might work? Bonor wrote: > tabPanel.add( panelA, panelB); > > How do I get de widget panelB? > > tabPanel.getWidget(0) returns panelA, so how about panelB? > > > > --~--~-~--~~~---~--~~ You received this message because you are subscrib

gwt and jdbc

2009-06-19 Thread Petein
package faceRecognition.server; import faceRecognition.client.AuthService; import com.google.gwt.user.server.rpc.RemoteServiceServlet; import java.sql.*; import java.util.*; import java.text.SimpleDateFormat; /** * The server side implementation of the RPC service. */ @SuppressWarnings("seria

Re: Send objects from/to Java usting GWT

2009-06-19 Thread Adligo
Well as I understand it GAE is just a servlet container so you have a varitey of options to pass java 'Objects' back and forth between two Servlets. You Could; Use GWT's RPC code to pass stuff between two Servlets (no examples for this, you probably need to look at some of the GWT source code to

How to get tab Widget in a TabPanel?

2009-06-19 Thread Bonor
tabPanel.add( panelA, panelB); How do I get de widget panelB? tabPanel.getWidget(0) returns panelA, so how about panelB? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this

Re: GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-06-19 Thread Ian Bambury
The PhoneEditor doesn't need the event bus since it doesn't respond to any events. The ContactWidget needs the event bus in case the details change in real time, then it can update itself. If you (the user) want to change the phone number while you are looking at the contact details (the ContactWi

Re: Fragmentar el archivo generado por GWT

2009-06-19 Thread Alex Rudnick
Hola Edwin! Sounds like you could use Code Splitting (aka "runAsync"). It's not in the currently released version (GWT 1.6), but it's available in the trunk, if you're willing to compile GWT from source. The trunk is actually pretty stable. Some searching for "gwt runasync" should give you more p

Fragmentar el archivo generado por GWT

2009-06-19 Thread Edwin Salguero
Hola señores del grupo.. Estoy trabajando con GWT y a manera que avanza mi proyecto el archivo compilado.. o sea el archivo que genera en este formato EB24C909C1A9454E5AA80569FED66A72.cache.html poco a poco se va haciendo mas grande.. a tal punto que ya son 700 KB y la verdad talvez para algunos

Re: How to setup RPC call to be "GET" instead of "POST"

2009-06-19 Thread Michael W
Thanks for the response. I do see RemoteServiceServlet only has doPost method. GWT should not limit GET request. Good news is that Akamai can help to cache the POST request. On Jun 17, 4:40 pm, Jason Essington wrote: > Not easily, the server side components reject GET request outright. > > An

Re: GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-06-19 Thread Ben
Finally found a thread talking about this presentation. It is very interesting for me as well. Thomas, you mentioned slide #73, actually I have some question about this. In this slide, from my point of view, both PhoneEditWidget and ContactWidget are just Views in MVP. Phone Editor is Presenter i

Re: Source Code Loss

2009-06-19 Thread Isaac Truett
I get to it through the context menu by right-clicking on a file. Exactly what it's called varies, I think depending on what version of Eclipse you have, whether you're using CVS or SVN plugins, and what version of said plugin you have, etc. First I'd look for "local history" under Team or Compare

Re: Source Code Loss

2009-06-19 Thread Lucas Neves Martins
Interesting, I am used to temporary backup files (and even time machine) that I have on my mac, but at work I only have eclipse, and I don't recall any temporary files on it. how do I access this history? Thanks for the tip! On Jun 19, 3:52 pm, Isaac Truett wrote: > Your version of Eclipse doe

Re: Source Code Loss

2009-06-19 Thread Isaac Truett
Your version of Eclipse doesn't have local file history? I don't recall what version it was introduced in. I can usually find every save I did of a file, sometimes going back for days. And since I tend to hit ctrl+shift+s every minute (or more often), that can be a lot of revisions. On Fri, Jun 1

Re: maps-api Directions color

2009-06-19 Thread Enea
Hi Eric, thank you for your answare. I 've tried what you tell me, but setting a style to a DirectionsPanel ,only affects the Panel where the textual directions are listed. My purpose was another: change the color of the tour on the map. The default color is purple: for example: http://maps.go

Source Code Loss

2009-06-19 Thread Lucas Neves Martins
It happened today, my Cypal Gwt eclipse plugin crashed. ( I use cypal 'cause it fits my needs ) I've lost my Ctrl+Z history, and half of the class I was editing ( it saved the class automatically after the crash ). The IDE didn't crashed, just the plugin, so, the Hosted server was still running,

GeoXmlOverlay - Google Maps API

2009-06-19 Thread Thalles
Hi Guys, I have a problem with the GeoXmlOverlay function from the Google Maps API. I always get the failure message that the KML file couldn't be loaded. It works in general with the Google sample KML file from this address: http://mapgadgets.googlepages.com/cta.kml. But as soon as I put the sa

java.lang.IllegalStateException: Unattached drop target

2009-06-19 Thread Memo Sanchez
Hello, I am trying to add D&D to an image who is suppose to be inserted into a GridPanel (who has my DropController), I have no problem doing an actual D&D from my HorizontalPanel to the GridPanel. the problem is when I insert that Image directly using .add method of the GridPanel. This is my

How to retrieve EntryPoint object?

2009-06-19 Thread hezjing
Hi A quick question, is there a convenient method to retrieve EntryPoint object? -- Hez --~--~-~--~~~---~--~~ 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-To

Re: GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-06-19 Thread Ian Petersen
On Thu, Jun 18, 2009 at 5:38 PM, Ian Bambury wrote: > 2009/6/19 Ian Petersen >> >> On Thu, Jun 18, 2009 at 3:56 PM, Ian Bambury wrote: >> > 2009/6/18 Thomas Broyer >> >> Whether the eventbus has a reference to the widget is >> >> orthogonal. >> > >> > I didn't realise that widgets were bird-watc

Re: Abrir Browser con tamaño personalizado

2009-06-19 Thread Alex Rudnick
Hola Ricardo, Parace que GWT no tiene un API para "resizeTo", pero se puede utilizar JSNI y llamar el método asi. public native void resize() /*-{ $wnd.resizeTo(100,800); }-*/; Se encuentra la documentación sobre JSNI aquí: http://code.google.com/webtoolkit/doc/1.6/DevGuideCodingBasics.html#D

Re: Eclipse is not stopping on breakpoints in GWTTest. Why?

2009-06-19 Thread Igor Moochnick
Wow. I spent all this time and endless hours debugging because Eclipse doesn't work correctly with Java 6.14??? When I've downgraded the Java from 6.14 to 6.13 - the breakpoint worked perfectly. Thanks!!! On Jun 15, 3:41 am, Paul Robinson wrote: > Check your version of the > JDK:http://cod

Re: Size response very big or timeout

2009-06-19 Thread kazabliz
plaise help me . That me gene in advance. One can put a mechanism, that allows cutting a big size, and to send it to the customer through the asyncCallback, I do not see how to do. Thank you for your assistance. On Jun 18, 7:53 pm, kazabliz wrote: > hello everyone, > I develop an application

selenium - sealing violation: package org.mortbay.util is sealed

2009-06-19 Thread banter
I have got "sealing violation: package org.mortbay.util is sealed" exception while running selenium test with following maven2 dependencies com.google.gwt gwt-dev 1.6.4 linux provided org.openqa.selenium.client-drivers selenium-java-clie

RPC call blocked by ISA Server when using IE

2009-06-19 Thread Luca Rosellini
Hello everybody, I need some help to understand what's going on with my GWT application. When using IE (same behaviour on IE7 & 8), sometimes our rpc calls fail and the onFailure handler gets called. The exception returned is a StatusCodeException which carries a status code of 500. Even though th

When deploying updates application doesn't execute until I clear-cache

2009-06-19 Thread martin23
I am experiencing a problem, that after I deploy updates to my app, that it does not execute in the browser until I force a clear in the browser's cache. I am using GWT 1.5.3 thanks Martin This is the HTML: should I be using additional pragma directives? The DIV "statusPanel" is used initially

History does not work in IE

2009-06-19 Thread derjan1982
I try to use the GWT history with a value change handler, what is recommended since GWT 1.6.4. The result is a TypeError in IE. My code in the onModuleLoad method looks like this: HorizontalPanel basePanel = new HorizontalPanel(); RootPanel.get().add( basePanel ); History.addValueChangeHandler(

[GWT 1.5.3 - OOPHM] IE8 and RPC errors: function expected

2009-06-19 Thread oltrem...@gmail.com
Hi all, I built a web application with GWT and tested it on Firefox (through OOPHM). The application works well as expected. Testing the same application with IE8 gave me the next exception: "00:04:10,828 [ERROR] Unable to load module entry point class it.uniplan.ucm.console.client.GWTConsole (s

Re: [1.6.4] org.dom4j.DocumentFactory cannot be cast to org.dom4j.DocumentFactory

2009-06-19 Thread Paul Robinson
If this is server side, could this be something to do with DocumentFactory being loaded by two different class loaders? Miles T. wrote: > Hi, > > I am trying to upgrade my GWT 1.5 webapp to 1.6. When I launch the > webapp in hosted mode, I get the following error : > org.dom4j.DocumentFactory can

Re: org.dom4j.DocumentFactory cannot be cast to org.dom4j.DocumentFactory

2009-06-19 Thread Miles T.
And hosted mode tests (GWTTestCase) are working... On 19 juin, 15:03, "Miles T." wrote: > Yes both are already in war/WEB-INF/lib directory. > > On 19 juin, 13:07, gscholt wrote: > > > If it worked on GWT 1.5, it should work on GWT 1.6... > > Copy libA.jar and libB.jar to the war/WEB-INF/lib di

Re: org.dom4j.DocumentFactory cannot be cast to org.dom4j.DocumentFactory

2009-06-19 Thread Miles T.
Yes both are already in war/WEB-INF/lib directory. On 19 juin, 13:07, gscholt wrote: > If it worked on GWT 1.5, it should work on GWT 1.6... > Copy libA.jar and libB.jar to the war/WEB-INF/lib directories? > > On Jun 19, 11:44 am, "Miles T." wrote: > > > Hi, > > > I am trying to upgrade my GWT

Re: Dialog box transparent in firefox - how to get rid of it??

2009-06-19 Thread wei shao
still not sure why... anyone else had similar problems? On Jun 18, 2:10 pm, wei shao wrote: > Here's what the structure of the dialog box looks like: > > .dialogBoxMain{ >        background-color: #FF; >         width: 230px; >         height: 130px; > > } > > .dialogBoxButtonPanel { >     b

Re: maps-api Directions color

2009-06-19 Thread Eric Ayers
I think you could do this with CSS. Put a style on your DirectionsPanel with directionsPanel1.setStyleName("directions1"); directionsPanel2.setStyleName("directions2"); .css file: .directions1 { background-color: #eee; } .directions2 { background-color: #fee; } Or, if you wanted to affect

Re: org.dom4j.DocumentFactory cannot be cast to org.dom4j.DocumentFactory

2009-06-19 Thread gscholt
If it worked on GWT 1.5, it should work on GWT 1.6... Copy libA.jar and libB.jar to the war/WEB-INF/lib directories? On Jun 19, 11:44 am, "Miles T." wrote: > Hi, > > I am trying to upgrade my GWT 1.5 webapp to 1.6. When I launch the > webapp in hosted mode, I get the following error : > org.dom4

Re: GWT architecture MVP/EventBus (mentioned at Google I/O)

2009-06-19 Thread Thomas Broyer
On 19 juin, 00:56, Ian Bambury wrote: > 2009/6/18 Thomas Broyer > > That was my point, really, that there is no method you can just shove the > unsubscribe into and have it just happen. You have to create one (calling it > what you will, unload(), teardown(), destroy(), etc) and hope the develo

[1.6.4] org.dom4j.DocumentFactory cannot be cast to org.dom4j.DocumentFactory

2009-06-19 Thread Miles T.
Hi, I am trying to upgrade my GWT 1.5 webapp to 1.6. When I launch the webapp in hosted mode, I get the following error : org.dom4j.DocumentFactory cannot be cast to org.dom4j.DocumentFactory :-s My webapp depends on a library A which depends on a library B which depends on dom4j 1.6.1 In my w

Re: Help required when or how to use timer

2009-06-19 Thread Suren
Hi, Once again thanks alot for your feedback. I have done that now, but I wont say it is completed. But I got the functionality as I expected. Below is the code I used Just have a look and clarify one question here. class Client { . . DBUpdate; new Highlig

Re: Auto-login

2009-06-19 Thread mars1412
yes, especially when using SSL it should be very secure > We do too, but as Ian also said, it only remembers the values to fill > the fields with. I'm pretty sure your idea about using hidden fields > won't work: I doubt browsers would fill them and I think browsers > differ in when they fill the

Re: MenuBar & MenuBarImages

2009-06-19 Thread abhiram wuntakal
Do you want to try SmartGWT? it has many advanced widgets. U can have a look at the SmartGWT showcase here http://www.smartclient.com/smartgwt/showcase/ This should help Regards, Abhiram On Fri, Jun 19, 2009 at 12:53 PM, Cuetumayu wrote: > > Hello, > > I am new comer to GWT so I would really

Re: Introducing GWTUML, a GWT UML Drawer.

2009-06-19 Thread mounier.flor...@gmail.com
Thanks for the feedbacks ! I don't have a roadmap since this project is a part of my end of course internship. But the code has been written to pretty "easily" integrates export and/ or persistance. This may be done in the near future, or not, depending on what I do next... (Time to find a job !)

MenuBar & MenuBarImages

2009-06-19 Thread Cuetumayu
Hello, I am new comer to GWT so I would really appreciate some help from you. I already have a MenuBar working but using just plain text for identifying the menu options. Since this doesn't look too fancy, I would like now to replace this texts by some images. I had a look to the MenuBar.MenuBarI

loading variable from native method

2009-06-19 Thread daim
hi, im trying to set the member variable dataArray with the eval(json) result, but dataArray stays always null :( //here is my membervariable private JsArray dataArray = null; //here is the native method private final native void asArrayOfData(String json) /*-{ th...@de.rob1n.gruen.c

GWT 1.6.4 - Problem running Samples in Hosted Mode

2009-06-19 Thread Lupan
Hi everyone! I'm a newbie to GWT and I'm trying to run the samples that come with the 1.6.4 distribution. I've tried the DynaTable example on the GWT_HOME/samples/DynaTable with the comand : ant hosted . The outcome was the Logging console and hosted mode browser popping up, however, onl