Re: build script wiht gwt2.0

2010-01-22 Thread Ignat Alexeyenko
Todd, You are welcome! -- Kind regards, Ignat Alexeyenko. On Sat, Jan 23, 2010 at 12:51 AM, paloalto team wrote: > Ignat, > > Just FYI.. this script was very useful for our team. > Specifically with Test/Doc Integration in our GWT Build. > > Thank you very much for sharing. > > Todd > > On Jan

Re: My icons are missing

2010-01-22 Thread darkling
Not to ask a dumb question but why does it work when I run it through the GWT plugin and not when I move it to glassfish? I really want the same code to run in both places. My application is called ADT which is also the name of my "google script" folder. I have servlets mapped to the extension /adt

Re: My icons are missing

2010-01-22 Thread darkling
Not to ask a dumb question but why does it work when I run it through the GWT plugin and not when I move it to glassfish? I really want the same code to run in both places. My application is called ADT which is also the name of my "google script" folder. I have servlets mapped to the extension /adt

Re: build script wiht gwt2.0

2010-01-22 Thread paloalto team
Ignat, Just FYI.. this script was very useful for our team. Specifically with Test/Doc Integration in our GWT Build. Thank you very much for sharing. Todd On Jan 7, 12:00 am, Ignat Alexeyenko wrote: > Hello, > > If you want to compile the project that is using GWT2.0 with ANT please look > at

Re: gwt query

2010-01-22 Thread jarrod
GWT Query isn't entirely compatible with IE8 anyway (there are several open issues about this on the project's site). For my project, the only part of JQuery I absolutely needed (read: there are not alternative options in GWT itself) was the CSS selector engine. Since GWT-Query provides JQuery fun

Re: gwt-phys2d: 2D physics engine for GWT

2010-01-22 Thread Neil Halelamien
Thanks! I'm thinking of adding some functionality this weekend for allowing a user to click-add however many objects they want, which will make it easy to see how it scales. On Jan 22, 6:57 am, Joel Webber wrote: > [+gwt-contrib] > > That's pretty impressive. Have you tried it on any larger scene

UiBinder Templates - Adding a series of HTML elements

2010-01-22 Thread Tim K
It appears that UiBinder Templates correspond to a single HTML element. That single HTML element is added to the DOM. This does not quite fit my needs. I would like a template to correspond to a series of elements. Does anyone know if this is possible? Let's say that I want to add a few dates

Mini Tutorial : GWT UiBinder “helloworld” with H TML

2010-01-22 Thread Iqbal Yusuf Dipu
Here's a very simple howto tutorial of a UiBinder template that contains no widgets, only HTML http://iqbalyusuf.wordpress.com/gwt-uibinder-helloworld-with-html/ Thanks. Iqbal Yusuf -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To pos

Re: How to use UIBinder

2010-01-22 Thread Iqbal Yusuf Dipu
GWT UiBinder “helloworld” with HTML http://wp.me/PnkVx-L -- 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 to google-web-to

Re: GWT and Firefox 3.6

2010-01-22 Thread dj.es...@gmail.com
I think this is the related bug report: http://code.google.com/p/google-web-toolkit/issues/detail?id=4380 On 22 jan, 14:15, FKereki wrote: > Hi! Is there a way to make the GWT development mode plugin work with > Firefox 3.6? I just installed the latter, and it says the current > version of the pl

GTUG-Atlanta meeting Thurs Feb 11th, 7PM Google Atlanta

2010-01-22 Thread Charlie Collins
A bit of a cross-post here, but wanted to let anyone interested know that we plan to have the first GTUG-Atlanta meeting in Feb (Feb 11th, 7PM, Google Atlanta). There will be a short intro about goals for the group, by me, and then a GWT best practices presentation by Chris Ramsdale (Googler). Aft

Re: incubator ScrollTable

2010-01-22 Thread ALEXEI BARBONI
All right... Is there a way to make the FixedWidthGrid (where is the content of the table) take widths automatic to each column, just like the Grid and FlexTable does? 2010/1/22 ALEXEI BARBONI > Ok..I know there must be many workarounds... > > But I wold like to know the reason this is happen.

Anything better than the current gwt-dispatch...

2010-01-22 Thread Henry
So far, I found there are a few ways to redirect your serviceimpl, namley 1) logic in web.xml 2) gwt-dispatch 3) various framework plugins (for struts, jsf) But each of these solns above require you to edit a config file (or modify a java file with guice) everytime you add a new serviceimpl. Woul

Re: incubator ScrollTable

2010-01-22 Thread ALEXEI BARBONI
Ok..I know there must be many workarounds... But I wold like to know the reason this is happen. I am taking a look at Firebug, but is not easy to undertand... 2010/1/22 Felipe > m > > I don't know if is the better solution, this maybe: > > > public void afterLoad () { > > if ( tabl

Re: My icons are missing

2010-01-22 Thread DaveC
Note the first forward slash in your image url - this points to the root of your server and not /appname/... Cheers, Dave On Jan 22, 4:41 pm, darkling wrote: > I'm trying to add icons to my application. Everything worked fine when > I ran in the google browser but now that I've published the sys

Re: Good book to learn GWT

2010-01-22 Thread Sreekanth B
hi On Fri, Jan 22, 2010 at 4:12 PM, Dan wrote: > Hi everybody, > > I have just begun learning GWT and was wondering if anybody knows a > decent book to get started - not too basic possibly. I have found a > few that seem rather good, but they all date back to 2008, maybe a bit > outdated? > I fo

Re: Curiosity about GWT 2.0 - related to ClickHandler

2010-01-22 Thread Cristian Nicanor Babula
Ok. Thanks. On 01/22/2010 05:38 PM, Paul Robinson wrote: As the javadoc for Hyperlink.addClickHandler() says, you should use an Anchor instead of Hyperlink if you want to add a handler. Hyperlinks are intended as history event inducing widgets only. Paul Cristian Nicanor Babula wrote: Hi

Bookmarklet to open page for OOPHM debug

2010-01-22 Thread sorbus
My working practice is to develop in eclipse on one machine but to debug in the browser on another. This means that when I have started the app in debug mode, I then have to copy and paste the URL. Since for many various GWT projects the URL is the same apart from the initial name of the html page

My icons are missing

2010-01-22 Thread darkling
I'm trying to add icons to my application. Everything worked fine when I ran in the google browser but now that I've published the system to my dev server (its Sun Application server 9.1) the icons are all missing. I'm also noticing that any servlets I try to access via HTTP (FormPanels) rather tha

Re: Curiosity about GWT 2.0 - related to ClickHandler

2010-01-22 Thread Paul Robinson
As the javadoc for Hyperlink.addClickHandler() says, you should use an Anchor instead of Hyperlink if you want to add a handler. Hyperlinks are intended as history event inducing widgets only. Paul Cristian Nicanor Babula wrote: > Hi everyone. > > Why Hyperlink.addClickHandler() is deprecated? >

Curiosity about GWT 2.0 - related to ClickHandler

2010-01-22 Thread Cristian Nicanor Babula
Hi everyone. Why Hyperlink.addClickHandler() is deprecated? I can't see a reason. How am I supposed to handle the onClick event of a Hyperlink? Thanks, Cristian. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, se

Re: port, eclipse, ff

2010-01-22 Thread Rajeev Dayal
You should not need to perform a compilation in order to get development mode to work. I'm not sure why port 8887 would have been active, unless you specified that in your launch configuration. What was appearing when you selected port vs port 8887? Can you reproduce the problem? 2010/1/22 E

Re: I18NSync and plural forms

2010-01-22 Thread thm
On 21 Jan., 23:36, Thomas Broyer wrote: > On 20 jan, 21:23, thm wrote: > > > Hey gurus, > > using GWT 2.0 I fiddled around with i18n and plural forms.  From the > > examples I thought I could write > > > addressBookTab_removeAddressConfirmationDialogTitle=Remove {0,number} > > Addresses? > > addr

Re: No Jetty Tab in Eclipse

2010-01-22 Thread Rajeev Dayal
Hi, Are you using the "Development Mode View" in Eclipse, or are you using GWT's Development Mode window? If you're talking about the view, it does not have an entry for the server; server messages are printed out to Eclipse's console view. Rajeev On Fri, Jan 22, 2010 at 3:53 AM, Fletch wrote

Re: GWT Plugin Change Folder

2010-01-22 Thread Rajeev Dayal
As it stands now, there is no way to configure the name of the folder that the Google Plugin for Eclipse uses; the folder must be named "war". However, we're currently working on a change make the war folder name configurable. On Fri, Jan 22, 2010 at 5:48 AM, Luca Servalli wrote: > I have a web

Re: GWT + Eclipse doesn't work. Attempted to beginRule: R/, does not match outer scope rule

2010-01-22 Thread Rajeev Dayal
Can you post the full stack trace? Also, have you always had this problem, or did you upgrade the plugin (or other plugins) in your Eclipse installation lately? Are you using any Eclipse plugins for source control? On Thu, Jan 21, 2010 at 8:39 AM, MaEcTPo wrote: > Hi, > I have a trouble with E

Event disposals

2010-01-22 Thread shahid
I am a little confused about event disposal in GWT. Should I always keep a reference to all HandlerRegistration objects whenever I attach a handler to something (e.g. image, links etc.) and then dispose them using .removeHandle upon widget detach ? Will not doing so end up in memory leak ? Or do th

Re: GWT hosting

2010-01-22 Thread Cristian Nicanor Babula
Take a look at Google Application Engine. It is free. Of course, if you get high traffic, then it will cost you. On 01/22/2010 04:38 PM, gengstrand wrote: While it is true that you could just use the javascript generated by GWT and hook it to any back end (assuming that you are using REST or PO

Re: javascript error (invalid Argument)

2010-01-22 Thread John Denley
Thanks Paul, you are quite right, it does work fin in IE8, I just tried it on another PC, and it works! So its just IE7 then... hm and G! 2010/1/22 Paul Stockley > Works fine for me on IE 8 > > -- > You received this message because you are subscribed to the Google Groups > "Google Web

Re: Building a Calendar Widget like Google Calendar with GWT advisable?

2010-01-22 Thread mstu...@googlemail.com
Useful hint, one can certainly use the calendar of this lib as a reference implementation... Thanks! On 21 Jan., 19:02, Paul Robinson wrote: > Seehttp://code.google.com/p/ftr-gwt-library/ > > Paul > > mstu...@googlemail.com wrote: > > Hi All, > > > I am quite new to GWT and currently evaluating

Re: GWT hosting

2010-01-22 Thread gengstrand
While it is true that you could just use the javascript generated by GWT and hook it to any back end (assuming that you are using REST or POX and not GWTRPC), the real value add in using GWT is with J2EE development. Otherwise, you could just use one of the other great RIA JS libraries such as jQue

Re: GWT 2.0 - Eclipse Plugin - Maven: 404 running in DevMode

2010-01-22 Thread Keith Platfoot
Hi Jim, I believe the solution here is to just add a -startupUrl parameter to your Java launch configuration. In the absence of that parameter, DevMode tries to guess which HTML host page you want to open, but I don't think it searches subdirectories. You can instead tell it exactly which page t

Re: GWT hosting

2010-01-22 Thread Djabi
GWT by itself doesn't need anything more then just plain old http server. GWT application that doesn't do rpc call to the server can be hosted on about anything. If you want to make rpc calls to services things get a bit more complicated as you need to host the service somewhere, but it doesn't hav

Re: port, eclipse, ff

2010-01-22 Thread Ewald Pankratz
Clean an compile didn't help. When I choose "Automatically select an unused port" it's working. On Jan 22, 10:01 am, Hind AbdolKhaleq wrote: > may try Project-> clean and compile again : *Notice the message at console > and print it out* > > 2010/1/22 Ewald Pankratz > > > > > > > With something

Re: gwt query

2010-01-22 Thread Deanna Bonds
I asked that about a week ago. There are no current plans for it. On Jan 22, 6:47 am, Johan Rydberg wrote: > Any comments on when gwt query will be integrated with GWT? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this gro

Re: gwt-phys2d: 2D physics engine for GWT

2010-01-22 Thread Joel Webber
[+gwt-contrib] That's pretty impressive. Have you tried it on any larger scene graphs? I'd love to see how it scales. It looks quite smooth on Chrome already. On Fri, Jan 22, 2010 at 3:05 AM, Neil Halelamien wrote: > I quasi-ported the Phys2d Java physics library to run with GWT and gwt- > g2d

Re: Two TabBar controls with different styles?

2010-01-22 Thread mariyan nenchev
Create dummy wrapper and use myFirstTab.setStyleName("wrapper-for-tab-one") mySecondTab.setStyleName("wrapper-for-tab-two") and override the styles for the default tab by just adding .wrapper-for-tab-one (two) in front of each selector. On Fri, Jan 22, 2010 at 1:20 PM, Tolick wrote: > How it woul

Some general questions

2010-01-22 Thread vdimitrov
Hi I'm not really having an issue of some kind. I just have some general question on how to approach GWT. 1) I recently read and experimented with the new declarative ui. Despite being easier to maintain and faster to develop, does it bring any performance drawback compared to the old programmati

Re: port, eclipse, ff

2010-01-22 Thread Hind AbdolKhaleq
may try Project-> clean and compile again : *Notice the message at console and print it out* 2010/1/22 Ewald Pankratz > With something else I mean the wrong page I had before. > > > On Jan 22, 6:30 am, Ewald Pankratz wrote: > > I work with eclipse 3.5, ubuntu 9.10 64 bit, firefox 3.57. I use th

Re: SplitLayoutPanel

2010-01-22 Thread Marcus Schröder
Hi, since you seem to have solved your problem, would you mind following up what exactly one has to do to get a working SplitLayoutPanel for the example code? I have the same problem you posted in your original message, read all of the followups but still have no clue if I need to create a css-Fil

Good book to learn GWT

2010-01-22 Thread Dan
Hi everybody, I have just begun learning GWT and was wondering if anybody knows a decent book to get started - not too basic possibly. I have found a few that seem rather good, but they all date back to 2008, maybe a bit outdated? Thanks, Dan -- You received this message because you are subscri

Re: port, eclipse, ff

2010-01-22 Thread Hind AbdolKhaleq
Hello Dear, I had the same platform and situation. try my solution: compile the project *and make sure the progress of compilation finished* before you run again. and by the way , for port configuration: Run as-> Run Configuration ->make sure to check the "*Automatically select an unused port*". a

Overlay types, ArrayList, JsArray... DevMode vs stand alone browser

2010-01-22 Thread Roger
I made a java interface with this: ArrayList getMyObjects(); I then made a serverside class implement this. I also made something like this: public class JSMyObjectHolder extends JavaScriptObject implements MyInterface { public ArrayList getMyObjects() /*-{ return this.myObjects;

Thousands of Spam emails from Google Groups

2010-01-22 Thread waterboils
I am now getting several emails a minute to my gmail from various Google Groups (including this one). I have never joined any Google Groups (till now to write this) and when I click to unsubscribe I get confirmation that I am not a member yet continue to receive hundreds of mails each time I log i

Re: javascript error (invalid Argument)

2010-01-22 Thread Paul Stockley
Works fine for me on IE 8 -- 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 to google-web-toolkit+unsubscr...@googlegroups.

Two TabBar controls with different styles?

2010-01-22 Thread Tolick
How it would be possible to have two tab bar controls on a page with different styles? Names of dependent styles seem to be hardcoded in the TabBar control implementation. So, setting upon setting stylename to a certain style does not affect dependent styles and thus things get broken. -- You re

No Jetty Tab in Eclipse

2010-01-22 Thread Fletch
I am running Eclipse 3.5 Galileo and just upgraded to GWT 2.0 I am able to run my application in Firefox with the add-on but I cannot figure out how to show the Jetty tab next to the development mode tab. This was clearly not an issue in GWT 1.71 but is really annoying for debugging any server issu

GWT Plugin Change Folder

2010-01-22 Thread Luca Servalli
I have a web project in IBM RAD 7.5 that have folder "WebContent" instead "war". Someone have a solution for plugin of google or I have to change the name of folder? thanks -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this gr

Saving page and running it locally breaks the functionality

2010-01-22 Thread baris
Hello Everyone! I have successfully created a simple application using GWT. It works as expected via my local host via address: http://localhost:/Sample.html I need something more :) I wish when I save the web page to my local disk via "Save page as" from browser, I would like it to be runnin

ClassCastException in DevMode on GWT 2.0 w/ Overlay Types

2010-01-22 Thread Roger Studner
I'm trying to do this: public interface Alert { public ArrayList getOtherAlerts(); } Client Code: public class JSAlert extends JavaScriptObject implements Alert { public final native ArrayList getOtherAlerts() /*-{ return this.alerts; }-*/; } another class: public void onModuleLoa

Re: OOPHM IE plugin doesn't work

2010-01-22 Thread alr3000
I am having the same problem: I ran the plugin installer and ran regsvr32.exe for the oophm.dll from the command line, but IE still asks for a new plugin when I try to open my devmode project in the browser. (32-bit Vista Business, IE 7) The registry keys are as follows: Key Name: HKEY_CL

gwt-phys2d: 2D physics engine for GWT

2010-01-22 Thread Neil Halelamien
I quasi-ported the Phys2d Java physics library to run with GWT and gwt- g2d (for HTML5 canvas rendering). You can see the result (and download the library source) here: http://edgeofvision.com/2010/01/22/initial-release-of-gwt-phys2d-javascriptgwt-physics-engine/ http://gwt-phys2d.appspot.com If

Re: uibinder specs?

2010-01-22 Thread Gregy
In gwt 2.0 installation folder you have example of Mail application. Maybe this example will help understand idea of UIBinder. But If you find new examples, let me know :) On 22 янв, 10:01, "chrisgo...@gmail.com" wrote: > I'm really excited about this new feature in GWT (uibinding).  I've > alrea

Re: about the limitation of MVC

2010-01-22 Thread gengstrand
Take a look at http://java.sun.com/j2se/1.4.2/docs/api/java/beans/PropertyChangeSupport.html On Jan 20, 7:42 am, "yu.cu...@126.com" wrote: > Hi, > Recently I am researching the MVC in GWT and meet a problem. According > to my understanding, in essentially, the benefits of MVC are 1) > decouple t

Problem with GWT.create()

2010-01-22 Thread JP
I'm having a problem with GWT.create() which I suspect has more to do with my understanding thanGWT.create() I'm using two different libraries that generate "handlers" for classes. Library A: InterfaceForLibraryA liba = GWT.create(Person.class); // Person implements MarkerA Library B: In

google calendar add ons

2010-01-22 Thread Davy
Is it possible to use the GWT to make a google calendar add on? I want to write an add on that would tell me know many hours of a particular event I have done for the last couple of month and generate a bill according to the hours. So if I spent 10 hours last week working on a certain project, the

Urgent How can I deploy android application to Google App Engine ???, I am using GWT

2010-01-22 Thread QterMgnus
i am using GWT as development tool. I have made a small android application that I want to test in Google cloud environment. is it possible to configure Android project so that Is it possible to use Google app engine ? if so how ? -- You received this message because you are subscribed to the Goo

Re: MVP and tabs :)

2010-01-22 Thread Alexander
One post - one problem. Nothing more. 2010/1/22 Stine > So sorry! Did not mean to spam! But if that is how it is seen then I > will of course stop posting. > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, se

Chrome 4.x Must Empty Cache after first visit to a GWT site

2010-01-22 Thread gcstang
Chrome 4.0.249.64 GWT 2 SmartGWT 2 I have my war deployed on a Linux Server served by Tomcat via Apache the first time I bring up the site in my Chrome browser it works great, and very fast. If I close the browser and try to bring it up again I only get a blank page with this at the top "-->", th

Re: MVP and tabs :)

2010-01-22 Thread Stine
So sorry! Did not mean to spam! But if that is how it is seen then I will of course stop posting. -- 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

Re: MVP and tabs :)

2010-01-22 Thread Frank Argueta
Stop spamming this group. Read the docs and take some time trying to solve the problem yourself before shooting off an email to the group. And can you stop with the ":)" and "" in every single post of yours! On Fri, Jan 22, 2010 at 7:25 AM, Stine Søndergaard wrote: > 5. EditContactPresenter e

Adding a script to in runtime.

2010-01-22 Thread Sebastian Quiles
Hi, I need to add a script in runtime (in the constructor of a Widget)... I ve tryied several ways and no one works on the 3 browsers (FF, IE, CH) I have read this post: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/9bb6d7cd75a8f3f7/c27ab6616257d778?lnk=gst&q=+2146827688#

GWT and Firefox 3.6

2010-01-22 Thread FKereki
Hi! Is there a way to make the GWT development mode plugin work with Firefox 3.6? I just installed the latter, and it says the current version of the plugin isn't supported. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this g

Re: how to set pagination or add scroll bar to the TabBar of an TabPanel

2010-01-22 Thread Ashar Lohmar
... maybe you should try adding the content in a Panel and that panel add it to another panel (HorizontalPanel maybe for both) and "hack" the style of the last one adding overflow:hidden TabPanel tp = new TabPanel(); tp.setWidth("500px"); // or whatever Widget content = ... // the realcontent Horiz

Re: incubator ScrollTable

2010-01-22 Thread Felipe
m I don't know if is the better solution, this maybe: public void afterLoad () { if ( tablaScroll.getDataTable().getColumnCount() == 1) { // setColumnWitdh } else { // otra cosa. } } regards.! On Jan 22, 9:46 am, Ashar Lohmar wrote: > this might sound like a st

GWT hosting

2010-01-22 Thread Florentine3D
To lay GWT necessarily need a hosting with support for Tomcat and other complex servers? And you can do without such complications? -- 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...@goo

gwt query

2010-01-22 Thread Johan Rydberg
Any comments on when gwt query will be integrated with GWT? -- 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 to google-web

Re: incubator ScrollTable

2010-01-22 Thread Ashar Lohmar
this might sound like a stupid workaround ... but can't you add an if statement or something to check if the table will have only one column ?! and for that use setColumnWidth ... i know that this is not a real answer but this is the only thing that comes into my mind without trying the real source

Re: MVP and tabs :)

2010-01-22 Thread Stine Søndergaard
5. EditContactPresenter empties container and adds his own view object* -- 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 to

Re: MVP and tabs :)

2010-01-22 Thread Stine Søndergaard
Hmm.. maybe I should be a bit more specific? :} When I study Google's Contacts example I see for example the following flow 1. User clicks add contact button 2. AddContactEvent is added to eventBus 3. AppController reacts upon this event and adds "add" to the History 4. AppController reacts u

Re: java.security.AccessControlException: access denied

2010-01-22 Thread nvrs
Never mind, i solved the problem. I was actually using file:$ {catalina.base}webapps/- instead of file:/var/lib/tomcat6/webapps that i wrote previously.Tomcat config in /etc/default/tomcat says that if you don't set catalina.base then /var/lib/tomcat6/ is used by default but... On Jan 22, 12:24 pm

Re: GWT 2.0 UI BINDER MVP

2010-01-22 Thread Stine Søndergaard
Looking so much forward to read the answers to this issue :) I am totally stuck in a similar situation... -- 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 unsubscr

GWT 2.0 UI BINDER MVP

2010-01-22 Thread bond
Hi, I read several articles about the mvp model in gwt. This guide is very usefull: http://code.google.com/intl/it-IT/webtoolkit/doc/latest/tutorial/mvp-architecture.html. But is not clear to me how to manage the Presenters with UiBinder. For example if I've a tipical application with header,side

java.security.AccessControlException: access denied

2010-01-22 Thread nvrs
Hi all, I am trying to deploy my gwt app to tomcat6 under ubuntu 9.10 and get the (i suppose known to many of you) "java.security.AccessControlException: access denied" error (Full exception can be found at the end). I have searched through this group and the net in general and found that the Java

Re: port, eclipse, ff

2010-01-22 Thread Ewald Pankratz
I copied a project in eclipse with ctrl c, ctrl v to a new name, run it, got the address "http://localhost:/DragDropDemo.html? gwt.codesvr=127.0.1.1:9997#BinExample" and all css attributes were missing. Then I changed the port number to 8887 and it was working. I changed back to port and s

Re: Prevent class conversion when compiling modules

2010-01-22 Thread Chris Lercher
Compilers usually need full type information before they can tell, who calls who. So this will probably add an additional compile step (or maybe change the compiler architecture?) Still, I think your suggested soultion uses a good approach, and you should create an entry in the issue tracker for th

Re: HandlerManager

2010-01-22 Thread DaveC
Just so I know we're talking about the same thing :o) An Blur event will fire when I either tab out of the Widget or when I click somewhere else in the application - is this how you are trying to cause the blur event to fire? (I had the above code working for me in Firefox 3.0/Dev mode GWT 2 - wha

Google GWT Gadgets Deployed on WSO2 Gadget Server - How to debug

2010-01-22 Thread hferreira
Hi, I'm testing Gadgets and want to use GWT to avoid million of html lines of code. For deployment I want to use WSO2 Gadget Server and NOT the Google IG. However my problem is how can I make debug with this setup? Thanks in Advance -- You received this message because you are subscribed to t

Re: HTML5 DND and File Upload...

2010-01-22 Thread DaveC
I've got a little further (or a different error message) - running the compiled code in Firefox 3.6 (as it supports the HTML5 File API) I get the following Javascript Error... "_FileReader_handlerManager is undefined" - I know nothing about the mechanics of how GWT takes my Java Classes and tu

Re: FireFox 3.6 Can't Debug Anymore :(

2010-01-22 Thread googelybear
same here, used to work with 3.5.7 - but doesn't work anymore with 3.6. When is the plugin expected to be updated? On 21 Jan., 23:38, Jim Douglas wrote: > When you clicked "Get the New Version", it should have taken you to a > dialogue that says "Incompatible Add-ons Found."  I'm seeing a > dialo

Re: Error while running unit tests - Servlets in web.xml are not identified

2010-01-22 Thread siva
Anyone has any idea on this ? -- 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 to google-web-toolkit+unsubscr...@googlegro

Re: MVP and tabs :)

2010-01-22 Thread Stine Søndergaard
Hmmm... would be so nice to see some more code examples :) Anyone? :P Thanks, Stine :) -- 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 grou